Skip to content
This repository has been archived by the owner on May 21, 2019. It is now read-only.

Commit

Permalink
Move /FS to SANITIZER_COMMON_CFLAGS
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@200485 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
timurrrr committed Jan 30, 2014
1 parent c9726c5 commit d2328a7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,10 @@ else()
set(SANITIZER_COMMON_CFLAGS
/MT
/Zi
/FS
/Oy-
/GS-
/wd4221
/wd4722
)
endif()
Expand Down
2 changes: 1 addition & 1 deletion lib/asan/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ if (NOT MSVC)
else()
set(ASAN_CFLAGS
${SANITIZER_COMMON_CFLAGS}
/GR- /FS)
/GR-)
endif()

set(ASAN_COMMON_DEFINITIONS
Expand Down
2 changes: 1 addition & 1 deletion lib/interception/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if (NOT MSVC)
else()
set(INTERCEPTION_CFLAGS
${SANITIZER_COMMON_CFLAGS}
/GR- /FS)
/GR-)
endif()

if(APPLE)
Expand Down
2 changes: 1 addition & 1 deletion lib/sanitizer_common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ if (NOT MSVC)
else()
set(SANITIZER_CFLAGS
${SANITIZER_COMMON_CFLAGS}
/GR- /FS)
/GR-)
endif()

if(SUPPORTS_GLOBAL_CONSTRUCTORS_FLAG)
Expand Down

0 comments on commit d2328a7

Please sign in to comment.