summaryrefslogtreecommitdiffstats
path: root/CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf
diff options
context:
space:
mode:
authorXiaoyu Lu <xiaoyux.lu@intel.com>2019-06-03 17:52:38 +0800
committerLiming Gao <liming.gao@intel.com>2019-06-04 08:10:14 +0800
commit466c66341a996fd05f5aae7f084fb344d89fd60f (patch)
treefb89e3943a6e35f333a2b8282ba9ecfca4a619f3 /CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf
parent49edde15230a5bfd6746225eb95535eaa2ec1ba4 (diff)
downloadedk2-466c66341a996fd05f5aae7f084fb344d89fd60f.tar.gz
edk2-466c66341a996fd05f5aae7f084fb344d89fd60f.tar.bz2
edk2-466c66341a996fd05f5aae7f084fb344d89fd60f.zip
CryptoPkg: Fix build problem with XCODE
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1089 When building CryptoPkg with XCODE, blow error may result * usr/lib/clang/9.0.0/include/stdatomic.h:105:17: error: unknown type name 'wchar_t' Since the C native atomics are C11 feature we can explicitly use C99 to work around it. add -std=c99 to avoid it * openssl/crypto/conf/conf_sap.c:71:12: error: variable 'ret' is uninitialized when used here [-Werror,-Wuninitialized] Suppress warnings in OpenSSL so we don't break the build with -Werror. add -Wno-error=uninitialized to disalbe this warning Cc: Jian Wang <jian.j.wang@intel.com> Cc: Ting Ye <ting.ye@intel.com> Signed-off-by: Xiaoyu Lu <xiaoyux.lu@intel.com> Reviewed-by: Jian J Wang <jian.j.wang@intel.com>
Diffstat (limited to 'CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf')
-rw-r--r--CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf2
1 files changed, 1 insertions, 1 deletions
diff --git a/CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf b/CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf
index 987a6c743f..d74ca3e2e4 100644
--- a/CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf
+++ b/CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf
@@ -97,7 +97,7 @@
#
MSFT:*_*_*_CC_FLAGS = /wd4090
- XCODE:*_*_*_CC_FLAGS = -mmmx -msse
+ XCODE:*_*_*_CC_FLAGS = -mmmx -msse -std=c99
GCC:*_CLANG35_*_CC_FLAGS = -std=c99
GCC:*_CLANG38_*_CC_FLAGS = -std=c99