[compiler-rt] r246617 - CFI: Make the cfi target a dependency of compiler-rt.
Peter Collingbourne via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 1 19:18:46 PDT 2015
Author: pcc
Date: Tue Sep 1 21:18:46 2015
New Revision: 246617
URL: http://llvm.org/viewvc/llvm-project?rev=246617&view=rev
Log:
CFI: Make the cfi target a dependency of compiler-rt.
This causes the blacklist to be copied into place as a default build step.
Modified:
compiler-rt/trunk/lib/cfi/CMakeLists.txt
Modified: compiler-rt/trunk/lib/cfi/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/cfi/CMakeLists.txt?rev=246617&r1=246616&r2=246617&view=diff
==============================================================================
--- compiler-rt/trunk/lib/cfi/CMakeLists.txt (original)
+++ compiler-rt/trunk/lib/cfi/CMakeLists.txt Tue Sep 1 21:18:46 2015
@@ -1,3 +1,4 @@
add_custom_target(cfi)
add_compiler_rt_resource_file(cfi_blacklist cfi_blacklist.txt)
add_dependencies(cfi cfi_blacklist)
+add_dependencies(compiler-rt cfi)
More information about the llvm-commits
mailing list