X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=StdLib%2FStdLib.inc;h=8837e04b4f3554473e2695467eb9f098bd013e49;hb=f2509d6d3efbed3cf90c44ace94a331b912b0017;hp=1b7fcf0bae31acf3f8a550f4e1fa17de53469b4d;hpb=6a013e50b3f63598e07030325d9469e2444a17a6;p=mirror_edk2.git diff --git a/StdLib/StdLib.inc b/StdLib/StdLib.inc index 1b7fcf0bae..8837e04b4f 100644 --- a/StdLib/StdLib.inc +++ b/StdLib/StdLib.inc @@ -5,6 +5,7 @@ # The including DSC file must DEFINE the EMULATE macro if # the application is to be run in an emulation environment. # +# Copyright (c) 2016, Daryl McDaniel. All rights reserved.
# Copyright (c) 2011 - 2014, Intel Corporation. All rights reserved.
# This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License @@ -72,10 +73,20 @@ [LibraryClasses.ARM] NULL|ArmPkg/Library/CompilerIntrinsicsLib/CompilerIntrinsicsLib.inf + NULL|StdLib/LibC/Softfloat/Softfloat.inf + + # Add support for GCC stack protector + NULL|MdePkg/Library/BaseStackCheckLib/BaseStackCheckLib.inf [LibraryClasses.AArch64] NULL|ArmPkg/Library/CompilerIntrinsicsLib/CompilerIntrinsicsLib.inf + # Use the softfloat library to cover missing hardfloat operations. + NULL|StdLib/LibC/Softfloat/Softfloat.inf + + # Add support for GCC stack protector + NULL|MdePkg/Library/BaseStackCheckLib/BaseStackCheckLib.inf + [Components] # BaseLib and BaseMemoryLib need to be built with the /GL- switch when using the Microsoft # tool chain. This is required so that the library functions can be resolved during @@ -112,7 +123,6 @@ MSFT:*_*_IA32_CC_FLAGS = /Od /D UEFI_C_SOURCE GCC:*_*_IA32_CC_FLAGS = -O0 -DUEFI_C_SOURCE RVCT:*_*_*_CC_FLAGS = --library_interface=none -DUEFI_C_SOURCE -J$(WORKSPACE)/StdLib/Include -J$(WORKSPACE)/StdLib/Include/Arm - ARMGCC:*_*_*_CC_FLAGS = -O0 -DUEFI_C_SOURCE -Wno-unknown-pragmas -Wno-unused -Wno-format-zero-length XCODE:*_*_*_CC_FLAGS = -O0 -DUEFI_C_SOURCE -Wno-unused-const-variable -Wno-string-compare -Wno-sometimes-uninitialized !else @@ -122,6 +132,14 @@ MSFT:*_*_*_CC_FLAGS = /X /Zc:wchar_t /D UEFI_C_SOURCE GCC:*_*_*_CC_FLAGS = -nostdinc -nostdlib -DUEFI_C_SOURCE RVCT:*_*_*_CC_FLAGS = --library_interface=none -DUEFI_C_SOURCE -J$(WORKSPACE)/StdLib/Include -J$(WORKSPACE)/StdLib/Include/Arm - ARMGCC:*_*_*_CC_FLAGS = -nostdinc -nostdlib -DUEFI_C_SOURCE -Wno-unknown-pragmas -Wno-unused -Wno-format-zero-length XCODE:*_*_*_CC_FLAGS = -nostdinc -nostdlib -DUEFI_C_SOURCE -Wno-unused-const-variable -Wno-string-compare -Wno-sometimes-uninitialized !endif + + # Temporarily restrict compiler warnings to those produced by VS2012. + # Code that fails when these flags are removed will have to be rewritten + # in order to pass. This may be as simple as renaming an object, but may + # require more significant changes. + MSFT:*_VS2015_*_CC_FLAGS = /Wv:11 + MSFT:*_VS2015x86_*_CC_FLAGS = /Wv:11 + MSFT:*_VS2015xASL_*_CC_FLAGS = /Wv:11 + MSFT:*_VS2015x86xASL_*_CC_FLAGS = /Wv:11