mirror of https://github.com/acidanthera/audk.git
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 <daryl.mcdaniel@intel.com> Reviewed-by: Jaben Carsey <jaben.carsey@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16331 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
8200fcfe54
commit
4b2cf923c0
|
@ -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
|
||||
|
||||
#
|
||||
|
|
|
@ -361,7 +361,7 @@ da_ConRead(
|
|||
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;
|
||||
|
|
|
@ -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
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue