[compiler-rt] r362566 - Changed force build of GWP-ASan options parser to be statically
Mitch Phillips via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 4 18:27:40 PDT 2019
Author: hctim
Date: Tue Jun 4 18:27:39 2019
New Revision: 362566
URL: http://llvm.org/viewvc/llvm-project?rev=362566&view=rev
Log:
Changed force build of GWP-ASan options parser to be statically
linked instead of dynamic. This should help resolve a downstream
build order issue against libc++.
Modified:
compiler-rt/trunk/lib/gwp_asan/CMakeLists.txt
Modified: compiler-rt/trunk/lib/gwp_asan/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/gwp_asan/CMakeLists.txt?rev=362566&r1=362565&r2=362566&view=diff
==============================================================================
--- compiler-rt/trunk/lib/gwp_asan/CMakeLists.txt (original)
+++ compiler-rt/trunk/lib/gwp_asan/CMakeLists.txt Tue Jun 4 18:27:39 2019
@@ -77,7 +77,7 @@ if (COMPILER_RT_HAS_GWP_ASAN)
foreach(arch ${GWP_ASAN_SUPPORTED_ARCH})
add_compiler_rt_runtime(
clang_rt.gwp_asan_options_parser
- SHARED
+ STATIC
ARCHS ${arch}
SOURCES ${GWP_ASAN_OPTIONS_PARSER_SOURCES}
ADDITIONAL_HEADERS ${GWP_ASAN_OPTIONS_PARSER_HEADERS}
More information about the llvm-commits
mailing list