From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail05.groups.io (mail05.groups.io [45.79.224.7]) by spool.mail.gandi.net (Postfix) with ESMTPS id B2532D804CC for ; Fri, 24 May 2024 04:12:35 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=u0jXV5HfCBxb6Nyk6jkpT/wCv35FG4zXB19BFC4/LZw=; c=relaxed/simple; d=groups.io; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Resent-Date:Resent-From:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Transfer-Encoding; s=20240206; t=1716523954; v=1; b=LGtS10FFiplWBU9kxiT087z3uyRrOVMwCNoWyqm6vN2BLYk5Ag3KcSKtcEVdbu8BkxGCt1Qo tEH99qx6hsBa8C7xBGuuh+cK6N+JgSMgRcrVp3QtjAA+Lj7Df2Y0q8vcRVs9E7z5wBr26nRG0Tj HT7juoZIGCDoOTMFl4DjyZ3P82K/hdQxxRBzH8GTuIhsVGsBNR9iRcb01Vkas76ZIcplX3BCLO+ afsii74uPI1eDLFuBlwt38FJndMNaUCfDq8wmJaXSd08yMLokd1ZyEgAxdc9AWFTslzXxSMBpCT LSSzlDC8Xj8Sh3OxBActWk9kYww17xk2tH4T8XfCnvAGg== X-Received: by 127.0.0.2 with SMTP id kXgRYY7687511xIbNNJMAg5h; Thu, 23 May 2024 21:12:34 -0700 X-Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.19]) by mx.groups.io with SMTP id smtpd.web11.8438.1716523952836392213 for ; Thu, 23 May 2024 21:12:32 -0700 X-CSE-ConnectionGUID: XuKJw3vNSU25kAFoc1SRbA== X-CSE-MsgGUID: OZ93wQN9SWSSWgrYkuMaEA== X-IronPort-AV: E=McAfee;i="6600,9927,11081"; a="12735704" X-IronPort-AV: E=Sophos;i="6.08,184,1712646000"; d="scan'208";a="12735704" X-Received: from orviesa002.jf.intel.com ([10.64.159.142]) by orvoesa111.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 May 2024 21:12:33 -0700 X-CSE-ConnectionGUID: BN4XhDT9RXmOsiF4oyOJOw== X-CSE-MsgGUID: S7e3ppn/RTyAUJSbgIzsCw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.08,184,1712646000"; d="scan'208";a="64711684" X-Received: from linusliu-desk1.gar.corp.intel.com ([10.225.76.64]) by orviesa002.jf.intel.com with ESMTP; 23 May 2024 21:12:30 -0700 From: "Linus Liu" To: devel@edk2.groups.io Cc: Benny Lin , Gua Guo , Chasel Chiu , James Lu , Dhaval Sharma Subject: [edk2-devel] [PATCH v3 1/6] MdePkg: Fix build error after enable FDT support. Date: Thu, 23 May 2024 21:12:25 -0700 Message-Id: <20240524041225.1098-1-linus.liu@intel.com> MIME-Version: 1.0 Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Resent-Date: Thu, 23 May 2024 21:12:32 -0700 Resent-From: linus.liu@intel.com Reply-To: devel@edk2.groups.io,linus.liu@intel.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: 9qfA4bykxsOI2BxXb0NXXK8vx7686176AA= Content-Transfer-Encoding: quoted-printable X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20240206 header.b=LGtS10FF; spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 45.79.224.7 as permitted sender) smtp.mailfrom=bounce@groups.io; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=intel.com (policy=none) Disable some compiling warnings caused by submodule code. Those can be removed later once issues fixed by submodule owner. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- MdePkg/Library/BaseFdtLib/BaseFdtLib.inf | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/MdePkg/Library/BaseFdtLib/BaseFdtLib.inf b/MdePkg/Library/Base= FdtLib/BaseFdtLib.inf index 730e568ff605..b5815380c5ee 100644 --- a/MdePkg/Library/BaseFdtLib/BaseFdtLib.inf +++ b/MdePkg/Library/BaseFdtLib/BaseFdtLib.inf @@ -57,6 +57,9 @@ BaseMemoryLib=0D =0D [BuildOptions]=0D - MSFT:*_*_IA32_CC_FLAGS =3D /wd4146 /wd4245=0D - MSFT:*_*_X64_CC_FLAGS =3D /wd4146 /wd4244 /wd4245 /wd4267=0D +# warning C4706: assignment within conditional expression=0D +# if ((err =3D fdt_splice_(fdt, p, oldlen, newlen)))=0D +# in BaseFdtLib\libfdt\libfdt\fdt_rw.c (wait for sub module update to remo= ve this)=0D + MSFT:*_*_IA32_CC_FLAGS =3D /wd4146 /wd4245 /wd4706=0D + MSFT:*_*_X64_CC_FLAGS =3D /wd4146 /wd4244 /wd4245 /wd4267 /wd4706=0D =0D --=20 2.39.2.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#119193): https://edk2.groups.io/g/devel/message/119193 Mute This Topic: https://groups.io/mt/106275981/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-