From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mx.groups.io with SMTP id smtpd.web08.27215.1649670364316286947 for ; Mon, 11 Apr 2022 02:46:06 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=iDe/jLJ7; spf=pass (domain: intel.com, ip: 134.134.136.100, mailfrom: yu.pu@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1649670365; x=1681206365; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=9MdHnlWhAXDRck+AdmpEh95eVnkomt74MNNFlRVs3rE=; b=iDe/jLJ7+fVhddh4FIcZUdFwGrJBbiE7BHp4RlPM1r29jW2AFAZEWBNE +/b20slNhQAAtL2aMBH+yYwqbfDrm20ULMK2L9nB17Fo2CS9jorOU/V34 uMQ9l5WdilSNUMn61UkepQJjCjJjHhRki0E5DanFbTY2qKhXXwGcjjLEN wscj3jVcMYz5M9chMu13ACeBrFUqEWbNAlc2dDgqfMaq1spUVqoy0xr/D zMgRF++3KeUZgRHE9d8BtdvvXwBNiLg27UQnZ6L4HY12dkpi/QYEbwSAT lmIiQIy+M4CVb1fExwTqRiKCPM4nDXTOqp4XDjnvtY4vufxlRsKzrwnu3 Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10313"; a="324989887" X-IronPort-AV: E=Sophos;i="5.90,251,1643702400"; d="scan'208";a="324989887" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Apr 2022 02:46:05 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,251,1643702400"; d="scan'208";a="507044940" Received: from shwdeopenlab704.ccr.corp.intel.com ([10.239.182.50]) by orsmga003.jf.intel.com with ESMTP; 11 Apr 2022 02:46:04 -0700 From: Yu Pu To: devel@edk2.groups.io Cc: Yu Pu , Michael D Kinney , Liming Gao , Zhiguang Liu Subject: [PATCH v1 03/15] MdePkg: Add CpuLib to module INFs that depend on UefiCpuLib. Date: Mon, 11 Apr 2022 17:45:43 +0800 Message-Id: <20220411094555.1375-4-yu.pu@intel.com> X-Mailer: git-send-email 2.30.0.windows.2 In-Reply-To: <20220411094555.1375-1-yu.pu@intel.com> References: <20220411094555.1375-1-yu.pu@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable There are two libraries: MdePkg/CpuLib and UefiCpuPkg/UefiCpuLib and UefiCpuPkg/UefiCpuLib will be merged to MdePkg/CpuLib. To avoid build failure, add CpuLib dependency to all modules that depend on UefiCpuLib. Cc: Michael D Kinney Cc: Liming Gao Cc: Zhiguang Liu Signed-off-by: Yu Pu --- MdePkg/MdeLibs.dsc.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/MdePkg/MdeLibs.dsc.inc b/MdePkg/MdeLibs.dsc.inc index 3c70daf87a0c..322575090239 100644 --- a/MdePkg/MdeLibs.dsc.inc +++ b/MdePkg/MdeLibs.dsc.inc @@ -13,3 +13,4 @@ =0D [LibraryClasses]=0D RegisterFilterLib|MdePkg/Library/RegisterFilterLibNull/RegisterFilterLib= Null.inf=0D + CpuLib|MdePkg/Library/BaseCpuLib/BaseCpuLib.inf=0D --=20 2.30.0.windows.2