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 47A25780091 for ; Mon, 3 Jun 2024 02:18:01 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=bcDCK1gyPbYHlW1yE+5KSrqFuYvUqJHvp9QFd8usW1I=; 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=1717381080; v=1; b=jadsw+xhP9hA3q5/sCXQvU+WhZFPilcTPp1sIma8eGnbqe664xLFhG9oK1kv/tAe0fNVK4Bp lNbRI7vJrYSF02KgyV92qzjdxSeqJIQmesPqIDR9cHhQXGbo6eQ0koP+hejbrkjEpwPxkdrVTz2 3SyA4eAuEPwQiWQeSKgQtGpESJj5E0cgg2uFrkRP/+5cq8C/5fG5an0es9OCIi8KporcLPt/aUq X/shgheVg7UtaLmZgRJJf4ZG0LP3VIzdwHg2Mz/UhzafqBp04bPNjy/xfdhPA2LAmd0mnCsSw+X n/WR0sONCvmmXvu3+IIsoTbXtf/1+FmzLnmMQ5wKtkDCQ== X-Received: by 127.0.0.2 with SMTP id hcuTYY7687511xhoXA9ynqow; Sun, 02 Jun 2024 19:17:59 -0700 X-Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.15]) by mx.groups.io with SMTP id smtpd.web11.73907.1717381074231342640 for ; Sun, 02 Jun 2024 19:17:54 -0700 X-CSE-ConnectionGUID: F6rXjOGEQjK/hMSXWT9JjA== X-CSE-MsgGUID: +4Kjy1iNQh+IIpVvfu7Cgg== X-IronPort-AV: E=McAfee;i="6600,9927,11091"; a="14049564" X-IronPort-AV: E=Sophos;i="6.08,210,1712646000"; d="scan'208";a="14049564" X-Received: from fmviesa010.fm.intel.com ([10.60.135.150]) by fmvoesa109.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Jun 2024 19:17:54 -0700 X-CSE-ConnectionGUID: h1sVbh0MSo+U9iodqPggcg== X-CSE-MsgGUID: IsxvclPxQ1q9QTy9KvMaAQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.08,210,1712646000"; d="scan'208";a="36821648" X-Received: from linusliu-desk1.gar.corp.intel.com ([10.225.76.64]) by fmviesa010.fm.intel.com with ESMTP; 02 Jun 2024 19:17:52 -0700 From: "Linus Liu" To: devel@edk2.groups.io Cc: Benny Lin , Gua Guo , Chasel Chiu , James Lu , Dhaval Sharma Subject: [edk2-devel] [PATCH v4 1/6] MdePkg: Fix build error after enable FDT support. Date: Sun, 2 Jun 2024 19:17:47 -0700 Message-Id: <20240603021747.1946-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: Sun, 02 Jun 2024 19:17:54 -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: zBm9Kba1SDxJoKQwrpwwAp4Zx7686176AA= 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=jadsw+xh; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=intel.com (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 45.79.224.7 as permitted sender) smtp.mailfrom=bounce@groups.io 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 (#119416): https://edk2.groups.io/g/devel/message/119416 Mute This Topic: https://groups.io/mt/106455150/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-