[compiler-rt] r369071 - Moved binary off add_llvm_executable.
Mitch Phillips via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 15 16:50:05 PDT 2019
Author: hctim
Date: Thu Aug 15 16:50:05 2019
New Revision: 369071
URL: http://llvm.org/viewvc/llvm-project?rev=369071&view=rev
Log:
Moved binary off add_llvm_executable.
Used add_executable instead, as this allows a standalone compiler-rt to build,
as the add_llvm_executable build target isn't accessible in a standalone CRT
preparation.
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=369071&r1=369070&r2=369071&view=diff
==============================================================================
--- compiler-rt/trunk/lib/gwp_asan/CMakeLists.txt (original)
+++ compiler-rt/trunk/lib/gwp_asan/CMakeLists.txt Thu Aug 15 16:50:05 2019
@@ -101,7 +101,7 @@ if (COMPILER_RT_HAS_GWP_ASAN)
# Build the stack trace compressor fuzzer.
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
- add_llvm_executable(stack_trace_compressor_fuzzer
+ add_executable(stack_trace_compressor_fuzzer
stack_trace_compressor_fuzzer.cpp
${GWP_ASAN_SOURCES}
${GWP_ASAN_HEADERS})
More information about the llvm-commits
mailing list