From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.120, mailfrom: liming.gao@intel.com) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by groups.io with SMTP; Sun, 07 Jul 2019 17:40:53 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 07 Jul 2019 17:40:53 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.63,464,1557212400"; d="scan'208";a="364068521" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by fmsmga006.fm.intel.com with ESMTP; 07 Jul 2019 17:40:53 -0700 Received: from fmsmsx153.amr.corp.intel.com (10.18.125.6) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.439.0; Sun, 7 Jul 2019 17:40:53 -0700 Received: from shsmsx105.ccr.corp.intel.com (10.239.4.158) by FMSMSX153.amr.corp.intel.com (10.18.125.6) with Microsoft SMTP Server (TLS) id 14.3.439.0; Sun, 7 Jul 2019 17:40:53 -0700 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.110]) by SHSMSX105.ccr.corp.intel.com ([169.254.11.232]) with mapi id 14.03.0439.000; Mon, 8 Jul 2019 08:40:51 +0800 From: "Liming Gao" To: "devel@edk2.groups.io" , "Lu, XiaoyuX" CC: "Yao, Jiewen" Subject: Re: [edk2-devel] [edk2-BuildSpecification PATCH] Document: Support HOST_APPLICATION ModuleType Thread-Topic: [edk2-devel] [edk2-BuildSpecification PATCH] Document: Support HOST_APPLICATION ModuleType Thread-Index: AQHVMXiO6ZIoMpdgl0GvsQebae1+bKa/6KHA Date: Mon, 8 Jul 2019 00:40:50 +0000 Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14E4A35BE@SHSMSX104.ccr.corp.intel.com> References: <20190703082344.21466-1-xiaoyux.lu@intel.com> In-Reply-To: <20190703082344.21466-1-xiaoyux.lu@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Return-Path: liming.gao@intel.com Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Liming Gao >-----Original Message----- >From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of >Xiaoyu Lu >Sent: Wednesday, July 03, 2019 4:24 PM >To: devel@edk2.groups.io >Cc: Lu, XiaoyuX ; Gao, Liming ; >Yao, Jiewen >Subject: [edk2-devel] [edk2-BuildSpecification PATCH] Document: Support >HOST_APPLICATION ModuleType > >BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=3D1952 > >INF spec add a new MODULE_TYPE HOST_APPLICATION, it indicate those >modules that can run directly in OS environment. So BUILD spec also >need be updated to support HOST_APPLICATION build. > >Cc: Liming Gao >Cc: Jiewen Yao >Signed-off-by: Xiaoyu Lu >--- > 1_introduction/13_terms.md | 4 ++-- > 8_pre-build_autogen_stage/83_auto-generated_code.md | 1 + > README.md | 1 + > 3 files changed, 4 insertions(+), 2 deletions(-) > >diff --git a/1_introduction/13_terms.md b/1_introduction/13_terms.md >index b6cd569..ee107d5 100644 >--- a/1_introduction/13_terms.md >+++ b/1_introduction/13_terms.md >@@ -228,8 +228,8 @@ with a similar set of requirements. A module that is = of >module type `BASE`, > depends only on headers and libraries provided in the MDE, while a modul= e >that > is of module type `DXE_DRIVER` depends on common DXE components. For a > definition of the various module types, see Appendix Module Types. The E= DK >II >-build system also permits modules of type `USER_DEFINED`. These modules >will not >-be processed by the EDK II Build system. >+build system also permits modules of type `USER_DEFINED` and >`HOST_APPLICATION`. >+These modules will not be processed by the EDK II Build system. > > **Package** > >diff --git a/8_pre-build_autogen_stage/83_auto-generated_code.md >b/8_pre-build_autogen_stage/83_auto-generated_code.md >index dcb0c09..b9a40ef 100644 >--- a/8_pre-build_autogen_stage/83_auto-generated_code.md >+++ b/8_pre-build_autogen_stage/83_auto-generated_code.md >@@ -684,6 +684,7 @@ Which files are included is determined by module type= . > ```c > Switch MODULE_TYPE { > case "BASE": >+ case "HOST_APPLICATION": > case "USER_DEFINED": > include_statement (AutoGen.c, " > #include >diff --git a/README.md b/README.md >index b51a382..bedc3e7 100644 >--- a/README.md >+++ b/README.md >@@ -230,3 +230,4 @@ Copyright (c) 2008-2017, Intel Corporation. All right= s >reserved. > | | [#1110](https://bugzilla.tianocore.org/show_bug.cgi?id=3D= 1110) >Extend exclamation statement's keyword to case-insensitive >| | > | | [#598](https://bugzilla.tianocore.org/show_bug.cgi?id=3D5= 98) update >supported operators in 8.2.4.6 Expressions >| | > | 1.29 | [#1453](https://bugzilla.tianocore.org/show_bug.cgi?id=3D= 1453) >Update Build spec to remove EDK related contents >| Mar 2019 | >+| 1.30 | [#1952](https://bugzilla.tianocore.org/show_bug.cgi?id=3D= 1952) >Update Build spec to support HOST_APPLICATION MODULE_TYPE >| July 2019 | >-- >2.17.1 > > >