summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorDon Hinton <hintonda@gmail.com>2018-01-29 05:32:21 +0000
committerDon Hinton <hintonda@gmail.com>2018-01-29 05:32:21 +0000
commit180c7ddfacde608fd9bd7565d6c53a4a7db5034c (patch)
tree841fb4af01b35e88d36236b66583f2f70191e4e9 /cmake
parentb5f55167a04f0bd789af01616390abd00b72f23b (diff)
Revert: [compiler-rt] r323626 - [cmake] [compiler-rt] Remove duplicate CMAKE_CXX_FLAGS.
Looks like it broke a bot: http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-android/builds/7195 Reverting until I have a chance to investigate. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@323629 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rw-r--r--cmake/Modules/AddCompilerRT.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/Modules/AddCompilerRT.cmake b/cmake/Modules/AddCompilerRT.cmake
index 748042245..f81eb3342 100644
--- a/cmake/Modules/AddCompilerRT.cmake
+++ b/cmake/Modules/AddCompilerRT.cmake
@@ -64,7 +64,7 @@ function(add_compiler_rt_object_libraries name)
endif()
set_target_compile_flags(${libname}
- ${extra_cflags_${libname}} ${target_flags})
+ ${CMAKE_CXX_FLAGS} ${extra_cflags_${libname}} ${target_flags})
set_property(TARGET ${libname} APPEND PROPERTY
COMPILE_DEFINITIONS ${LIB_DEFS})
set_target_properties(${libname} PROPERTIES FOLDER "Compiler-RT Libraries")