commit | d983ae0a0ec5beeb844992dc23f0b923b7499d75 | [log] [tgz] |
---|---|---|
author | Chris Bieneman <beanz@apple.com> | Thu Sep 24 16:47:26 2015 +0000 |
committer | Chris Bieneman <beanz@apple.com> | Thu Sep 24 16:47:26 2015 +0000 |
tree | b8c9e993fe46b6c87daece34bbf80e9a9566230c | |
parent | 22db068008fff7bfcc14325ac4e4bf1efb641ac4 [diff] |
[CMake] pass -Wno-pedantic to cc_kext builtins build We don't pass -pedantic to the builtin builds in the makefiles, so we shouldn't do it here. This is a temporary fix for the broken bot: http://lab.llvm.org:8080/green/job/clang-stage1-cmake-RA_build/7526/warnings8Result/new/ A more correct solution is in the works. llvm-svn: 248515
diff --git a/compiler-rt/cmake/Modules/CompilerRTDarwinUtils.cmake b/compiler-rt/cmake/Modules/CompilerRTDarwinUtils.cmake index 38c47f2..485232a 100644 --- a/compiler-rt/cmake/Modules/CompilerRTDarwinUtils.cmake +++ b/compiler-rt/cmake/Modules/CompilerRTDarwinUtils.cmake
@@ -195,7 +195,7 @@ OS ${os} ARCH ${arch} SOURCES ${${arch}_SOURCES} - CFLAGS "-std=c99" -arch ${arch} -mkernel + CFLAGS "-std=c99" -arch ${arch} -mkernel -Wno-pedantic DEFS KERNEL_USE PARENT_TARGET builtins)