[compiler-rt] r200480 - Add an /FS flag to the sanitizer_common CMake to make it buildable with VS2013
Timur Iskhodzhanov
timurrrr at google.com
Thu Jan 30 10:56:06 PST 2014
Author: timurrrr
Date: Thu Jan 30 12:56:06 2014
New Revision: 200480
URL: http://llvm.org/viewvc/llvm-project?rev=200480&view=rev
Log:
Add an /FS flag to the sanitizer_common CMake to make it buildable with VS2013
Modified:
compiler-rt/trunk/lib/sanitizer_common/CMakeLists.txt
Modified: compiler-rt/trunk/lib/sanitizer_common/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/CMakeLists.txt?rev=200480&r1=200479&r2=200480&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/CMakeLists.txt (original)
+++ compiler-rt/trunk/lib/sanitizer_common/CMakeLists.txt Thu Jan 30 12:56:06 2014
@@ -94,7 +94,7 @@ if (NOT MSVC)
else()
set(SANITIZER_CFLAGS
${SANITIZER_COMMON_CFLAGS}
- /GR-)
+ /GR- /FS)
endif()
if(SUPPORTS_GLOBAL_CONSTRUCTORS_FLAG)
More information about the llvm-commits
mailing list