Revision: 16331
          http://sourceforge.net/p/edk2/code/16331
Author:   darylm503
Date:     2014-11-11 22:56:58 +0000 (Tue, 11 Nov 2014)
Log Message:
-----------
StdLib/AppPkg: Add the NOOPT build target and fix a type conversion problem 
with VS2005.

AppPkg.dsc: Remove IPF support and add NOOPT build target.
StdLib.dsc: Add NOOPT build target.
daConsole.c: Cast a comparison to BOOLEAN before assigning it to a BOOLEAN.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Daryl McDaniel <[email protected]>
Reviewed-by: Jaben Carsey <[email protected]>

Modified Paths:
--------------
    trunk/edk2/AppPkg/AppPkg.dsc
    trunk/edk2/StdLib/LibC/Uefi/Devices/Console/daConsole.c
    trunk/edk2/StdLib/StdLib.dsc

Modified: trunk/edk2/AppPkg/AppPkg.dsc
===================================================================
--- trunk/edk2/AppPkg/AppPkg.dsc        2014-11-11 07:33:50 UTC (rev 16330)
+++ trunk/edk2/AppPkg/AppPkg.dsc        2014-11-11 22:56:58 UTC (rev 16331)
@@ -23,8 +23,8 @@
   PLATFORM_VERSION               = 0.01
   DSC_SPECIFICATION              = 0x00010006
   OUTPUT_DIRECTORY               = Build/AppPkg
-  SUPPORTED_ARCHITECTURES        = IA32|IPF|X64|ARM|AARCH64
-  BUILD_TARGETS                  = DEBUG|RELEASE
+  SUPPORTED_ARCHITECTURES        = IA32|X64|ARM|AARCH64
+  BUILD_TARGETS                  = DEBUG|RELEASE|NOOPT
   SKUID_IDENTIFIER               = DEFAULT
 
 #

Modified: trunk/edk2/StdLib/LibC/Uefi/Devices/Console/daConsole.c
===================================================================
--- trunk/edk2/StdLib/LibC/Uefi/Devices/Console/daConsole.c     2014-11-11 
07:33:50 UTC (rev 16330)
+++ trunk/edk2/StdLib/LibC/Uefi/Devices/Console/daConsole.c     2014-11-11 
22:56:58 UTC (rev 16331)
@@ -361,7 +361,7 @@
   else {
     Stream = BASE_CR(filp->f_ops, ConInstance, Abstraction);
     Proto = (EFI_SIMPLE_TEXT_INPUT_PROTOCOL *)Stream->Dev;
-    BlockingMode = ((filp->Oflags & O_NONBLOCK) == 0);
+    BlockingMode = (BOOLEAN)((filp->Oflags & O_NONBLOCK) == 0);
 
     do {
       Status = EFI_SUCCESS;

Modified: trunk/edk2/StdLib/StdLib.dsc
===================================================================
--- trunk/edk2/StdLib/StdLib.dsc        2014-11-11 07:33:50 UTC (rev 16330)
+++ trunk/edk2/StdLib/StdLib.dsc        2014-11-11 22:56:58 UTC (rev 16331)
@@ -28,7 +28,7 @@
   DSC_SPECIFICATION              = 0x00010006
   OUTPUT_DIRECTORY               = Build/StdLib
   SUPPORTED_ARCHITECTURES        = IA32|X64|ARM
-  BUILD_TARGETS                  = DEBUG|RELEASE
+  BUILD_TARGETS                  = DEBUG|RELEASE|NOOPT
   SKUID_IDENTIFIER               = DEFAULT
 
 #


------------------------------------------------------------------------------
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://pubads.g.doubleclick.net/gampad/clk?id=154624111&iu=/4140/ostg.clktrk
_______________________________________________
edk2-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-commits

Reply via email to