public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH 1/2] ArmPkg/ArmPkg.dsc: enable NOOPT build target
@ 2018-06-18 16:51 Ard Biesheuvel
  2018-06-18 16:51 ` [PATCH 2/2] Embedded/EmbeddedPkg.dsc: " Ard Biesheuvel
  0 siblings, 1 reply; 4+ messages in thread
From: Ard Biesheuvel @ 2018-06-18 16:51 UTC (permalink / raw)
  To: edk2-devel; +Cc: leif.lindholm, Ard Biesheuvel

Enable to NOOPT build target so we can build this package with
optimizations disabled.

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
---
 ArmPkg/ArmPkg.dsc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ArmPkg/ArmPkg.dsc b/ArmPkg/ArmPkg.dsc
index 22332090db71..76d768126b17 100644
--- a/ArmPkg/ArmPkg.dsc
+++ b/ArmPkg/ArmPkg.dsc
@@ -27,7 +27,7 @@ [Defines]
   DSC_SPECIFICATION              = 0x00010005
   OUTPUT_DIRECTORY               = Build/Arm
   SUPPORTED_ARCHITECTURES        = ARM|AARCH64
-  BUILD_TARGETS                  = DEBUG|RELEASE
+  BUILD_TARGETS                  = DEBUG|RELEASE|NOOPT
   SKUID_IDENTIFIER               = DEFAULT
 
 [BuildOptions]
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] Embedded/EmbeddedPkg.dsc: enable NOOPT build target
  2018-06-18 16:51 [PATCH 1/2] ArmPkg/ArmPkg.dsc: enable NOOPT build target Ard Biesheuvel
@ 2018-06-18 16:51 ` Ard Biesheuvel
  2018-06-18 17:33   ` Leif Lindholm
  0 siblings, 1 reply; 4+ messages in thread
From: Ard Biesheuvel @ 2018-06-18 16:51 UTC (permalink / raw)
  To: edk2-devel; +Cc: leif.lindholm, Ard Biesheuvel

Enable to NOOPT build target so we can build this package with
optimizations disabled.

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
---
 EmbeddedPkg/EmbeddedPkg.dsc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/EmbeddedPkg/EmbeddedPkg.dsc b/EmbeddedPkg/EmbeddedPkg.dsc
index e6fad5e58b2d..3914eb7cfa5a 100644
--- a/EmbeddedPkg/EmbeddedPkg.dsc
+++ b/EmbeddedPkg/EmbeddedPkg.dsc
@@ -28,7 +28,7 @@ [Defines]
   DSC_SPECIFICATION              = 0x00010005
   OUTPUT_DIRECTORY               = Build/Embedded
   SUPPORTED_ARCHITECTURES        = IA32|X64|IPF|ARM|AARCH64
-  BUILD_TARGETS                  = DEBUG|RELEASE
+  BUILD_TARGETS                  = DEBUG|RELEASE|NOOPT
   SKUID_IDENTIFIER               = DEFAULT
 
 
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 2/2] Embedded/EmbeddedPkg.dsc: enable NOOPT build target
  2018-06-18 16:51 ` [PATCH 2/2] Embedded/EmbeddedPkg.dsc: " Ard Biesheuvel
@ 2018-06-18 17:33   ` Leif Lindholm
  2018-06-18 17:36     ` Ard Biesheuvel
  0 siblings, 1 reply; 4+ messages in thread
From: Leif Lindholm @ 2018-06-18 17:33 UTC (permalink / raw)
  To: Ard Biesheuvel; +Cc: edk2-devel

On Mon, Jun 18, 2018 at 06:51:44PM +0200, Ard Biesheuvel wrote:
> Enable to NOOPT build target so we can build this package with
> optimizations disabled.
> 
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>

For series:
Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>


> ---
>  EmbeddedPkg/EmbeddedPkg.dsc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/EmbeddedPkg/EmbeddedPkg.dsc b/EmbeddedPkg/EmbeddedPkg.dsc
> index e6fad5e58b2d..3914eb7cfa5a 100644
> --- a/EmbeddedPkg/EmbeddedPkg.dsc
> +++ b/EmbeddedPkg/EmbeddedPkg.dsc
> @@ -28,7 +28,7 @@ [Defines]
>    DSC_SPECIFICATION              = 0x00010005
>    OUTPUT_DIRECTORY               = Build/Embedded
>    SUPPORTED_ARCHITECTURES        = IA32|X64|IPF|ARM|AARCH64
> -  BUILD_TARGETS                  = DEBUG|RELEASE
> +  BUILD_TARGETS                  = DEBUG|RELEASE|NOOPT
>    SKUID_IDENTIFIER               = DEFAULT
>  
>  
> -- 
> 2.17.1
> 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 2/2] Embedded/EmbeddedPkg.dsc: enable NOOPT build target
  2018-06-18 17:33   ` Leif Lindholm
@ 2018-06-18 17:36     ` Ard Biesheuvel
  0 siblings, 0 replies; 4+ messages in thread
From: Ard Biesheuvel @ 2018-06-18 17:36 UTC (permalink / raw)
  To: Leif Lindholm; +Cc: edk2-devel@lists.01.org

On 18 June 2018 at 19:33, Leif Lindholm <leif.lindholm@linaro.org> wrote:
> On Mon, Jun 18, 2018 at 06:51:44PM +0200, Ard Biesheuvel wrote:
>> Enable to NOOPT build target so we can build this package with
>> optimizations disabled.
>>
>> Contributed-under: TianoCore Contribution Agreement 1.1
>> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
>
> For series:
> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
>

Thanks

Pushed as 11d0cd23dd1b..a50aa9dd8881

>
>> ---
>>  EmbeddedPkg/EmbeddedPkg.dsc | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/EmbeddedPkg/EmbeddedPkg.dsc b/EmbeddedPkg/EmbeddedPkg.dsc
>> index e6fad5e58b2d..3914eb7cfa5a 100644
>> --- a/EmbeddedPkg/EmbeddedPkg.dsc
>> +++ b/EmbeddedPkg/EmbeddedPkg.dsc
>> @@ -28,7 +28,7 @@ [Defines]
>>    DSC_SPECIFICATION              = 0x00010005
>>    OUTPUT_DIRECTORY               = Build/Embedded
>>    SUPPORTED_ARCHITECTURES        = IA32|X64|IPF|ARM|AARCH64
>> -  BUILD_TARGETS                  = DEBUG|RELEASE
>> +  BUILD_TARGETS                  = DEBUG|RELEASE|NOOPT
>>    SKUID_IDENTIFIER               = DEFAULT
>>
>>
>> --
>> 2.17.1
>>


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-06-18 17:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-18 16:51 [PATCH 1/2] ArmPkg/ArmPkg.dsc: enable NOOPT build target Ard Biesheuvel
2018-06-18 16:51 ` [PATCH 2/2] Embedded/EmbeddedPkg.dsc: " Ard Biesheuvel
2018-06-18 17:33   ` Leif Lindholm
2018-06-18 17:36     ` Ard Biesheuvel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox