summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2013-08-06 23:34:04 +0000
committerAaron Ballman <aaron@aaronballman.com>2013-08-06 23:34:04 +0000
commitf65993999079bcde7b04373eca9ffa2be0e7ffe9 (patch)
tree00af267bed7646c366a734e63d88a047c5b96418 /cmake
parentc89c964499ef71e496be37ac12a5c521e263f44e (diff)
downloadllvm-f65993999079bcde7b04373eca9ffa2be0e7ffe9.tar.gz
llvm-f65993999079bcde7b04373eca9ffa2be0e7ffe9.tar.bz2
llvm-f65993999079bcde7b04373eca9ffa2be0e7ffe9.tar.xz
Replacing /GR with /GR- instead of applying both options to the project. This should reduce some build bot warnings (D9025: "overriding '/GR' with '/GR-'").
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187836 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/AddLLVM.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake
index f0b31ce653..094969c8f4 100644
--- a/cmake/modules/AddLLVM.cmake
+++ b/cmake/modules/AddLLVM.cmake
@@ -191,7 +191,7 @@ function(add_unittest test_suite test_name)
if (LLVM_COMPILER_IS_GCC_COMPATIBLE)
set(target_compile_flags "${target_compile_flags} -fno-rtti")
elseif (MSVC)
- set(target_compile_flags "${target_compile_flags} /GR-")
+ llvm_replace_compiler_option(target_compile_flags "/GR" "/GR-")
endif ()
if (SUPPORTS_NO_VARIADIC_MACROS_FLAG)