]> git.proxmox.com Git - mirror_edk2.git/blobdiff - StdLib/StdLib.inc
CryptoPkg/BaseCryptLib.h: Add new API to get organization name
[mirror_edk2.git] / StdLib / StdLib.inc
index 391c7c91e4e552ebd54a47e49cd9fc0b57de6170..32e1ae02f6d763b318026729ebcaa997763a93c4 100644 (file)
@@ -5,14 +5,9 @@
 # The including DSC file must DEFINE the EMULATE macro if\r
 # the application is to be run in an emulation environment.\r
 #\r
+#  Copyright (c) 2016, Daryl McDaniel. All rights reserved.<BR>\r
 #  Copyright (c) 2011 - 2014, Intel Corporation. All rights reserved.<BR>\r
-#  This program and the accompanying materials\r
-#  are licensed and made available under the terms and conditions of the BSD License\r
-#  which accompanies this distribution. The full text of the license may be found at\r
-#  http://opensource.org/licenses/bsd-license.\r
-#\r
-#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+#  SPDX-License-Identifier: BSD-2-Clause-Patent\r
 ################################################################\r
 \r
 ##########\r
@@ -72,6 +67,7 @@
 \r
 [LibraryClasses.ARM]\r
   NULL|ArmPkg/Library/CompilerIntrinsicsLib/CompilerIntrinsicsLib.inf\r
+  NULL|StdLib/LibC/Softfloat/Softfloat.inf\r
 \r
   # Add support for GCC stack protector\r
   NULL|MdePkg/Library/BaseStackCheckLib/BaseStackCheckLib.inf\r
@@ -79,6 +75,9 @@
 [LibraryClasses.AArch64]\r
   NULL|ArmPkg/Library/CompilerIntrinsicsLib/CompilerIntrinsicsLib.inf\r
 \r
+  # Use the softfloat library to cover missing hardfloat operations.\r
+  NULL|StdLib/LibC/Softfloat/Softfloat.inf\r
+\r
   # Add support for GCC stack protector\r
   NULL|MdePkg/Library/BaseStackCheckLib/BaseStackCheckLib.inf\r
 \r
    MSFT:*_*_IA32_CC_FLAGS   = /Od /D UEFI_C_SOURCE\r
     GCC:*_*_IA32_CC_FLAGS   = -O0 -DUEFI_C_SOURCE\r
     RVCT:*_*_*_CC_FLAGS     = --library_interface=none -DUEFI_C_SOURCE -J$(WORKSPACE)/StdLib/Include -J$(WORKSPACE)/StdLib/Include/Arm\r
-  ARMGCC:*_*_*_CC_FLAGS     = -O0 -DUEFI_C_SOURCE -Wno-unknown-pragmas -Wno-unused -Wno-format-zero-length\r
    XCODE:*_*_*_CC_FLAGS     = -O0 -DUEFI_C_SOURCE -Wno-unused-const-variable -Wno-string-compare -Wno-sometimes-uninitialized\r
 \r
 !else\r
     MSFT:*_*_*_CC_FLAGS     = /X /Zc:wchar_t /D UEFI_C_SOURCE\r
      GCC:*_*_*_CC_FLAGS     = -nostdinc -nostdlib -DUEFI_C_SOURCE\r
     RVCT:*_*_*_CC_FLAGS     = --library_interface=none -DUEFI_C_SOURCE -J$(WORKSPACE)/StdLib/Include -J$(WORKSPACE)/StdLib/Include/Arm\r
-  ARMGCC:*_*_*_CC_FLAGS     = -nostdinc -nostdlib -DUEFI_C_SOURCE -Wno-unknown-pragmas -Wno-unused -Wno-format-zero-length\r
    XCODE:*_*_*_CC_FLAGS     = -nostdinc -nostdlib -DUEFI_C_SOURCE -Wno-unused-const-variable -Wno-string-compare -Wno-sometimes-uninitialized\r
 !endif\r
+\r
+  # Temporarily restrict compiler warnings to those produced by VS2012.\r
+  # Code that fails when these flags are removed will have to be rewritten\r
+  # in order to pass.  This may be as simple as renaming an object, but may\r
+  # require more significant changes.\r
+    MSFT:*_VS2015_*_CC_FLAGS          = /Wv:11\r
+    MSFT:*_VS2015x86_*_CC_FLAGS       = /Wv:11\r
+    MSFT:*_VS2015xASL_*_CC_FLAGS      = /Wv:11\r
+    MSFT:*_VS2015x86xASL_*_CC_FLAGS   = /Wv:11\r