diff options
author | Daryl McDaniel <edk2-lists@mc2research.org> | 2016-01-05 23:46:22 +0000 |
---|---|---|
committer | darylm503 <darylm503@Edk2> | 2016-01-05 23:46:22 +0000 |
commit | cfb252305ab85bf77a303cb167c6ee80e1c35e7d (patch) | |
tree | c732a784fbda99546a7e17454d66660bab0c5d82 /StdLib | |
parent | 76f9e333b4de7648ed79b3aec638ff6abfa4846f (diff) | |
download | edk2-cfb252305ab85bf77a303cb167c6ee80e1c35e7d.tar.gz edk2-cfb252305ab85bf77a303cb167c6ee80e1c35e7d.tar.bz2 edk2-cfb252305ab85bf77a303cb167c6ee80e1c35e7d.zip |
StdLib: Temporarily restrict compiler warnings so that sockets can be built using VS2015.
Update Copyright notice.
Add Build Options so that builds using VS2015 have the /Wv:11 options added to the CC_FLAGS.
This restricts the warnings generated by VS2015 (VC++) to just those that are produced by
version 11 of the C compiler, VS2010.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Daryl McDaniel <edk2-lists@mc2research.org>
Reviewed-by: Erik Bjorge <erik.c.bjorge@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19586 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'StdLib')
-rw-r--r-- | StdLib/StdLib.inc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/StdLib/StdLib.inc b/StdLib/StdLib.inc index fff9ef05e6..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.<BR>
# Copyright (c) 2011 - 2014, Intel Corporation. All rights reserved.<BR>
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
@@ -133,3 +134,12 @@ RVCT:*_*_*_CC_FLAGS = --library_interface=none -DUEFI_C_SOURCE -J$(WORKSPACE)/StdLib/Include -J$(WORKSPACE)/StdLib/Include/Arm
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
|