[llvm] 0d27543 - Add intrinsics_gen *dependency* on Bye example

via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 2 08:17:23 PST 2020


Author: serge-sans-paille
Date: 2020-01-02T17:16:48+01:00
New Revision: 0d275431a3abc96fdee3e09afdc84e59df0e1d3b

URL: https://github.com/llvm/llvm-project/commit/0d275431a3abc96fdee3e09afdc84e59df0e1d3b
DIFF: https://github.com/llvm/llvm-project/commit/0d275431a3abc96fdee3e09afdc84e59df0e1d3b.diff

LOG: Add intrinsics_gen *dependency* on Bye example

Added: 
    

Modified: 
    llvm/examples/Bye/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/llvm/examples/Bye/CMakeLists.txt b/llvm/examples/Bye/CMakeLists.txt
index 257fa5cba260..ac3b33bf248b 100644
--- a/llvm/examples/Bye/CMakeLists.txt
+++ b/llvm/examples/Bye/CMakeLists.txt
@@ -1,4 +1,8 @@
-add_llvm_pass_plugin(Bye Bye.cpp)
+add_llvm_pass_plugin(Bye
+    Bye.cpp
+    DEPENDS
+    intrinsics_gen
+    )
 if (LLVM_LINK_LLVM_DYLIB)
   target_link_libraries(Bye PUBLIC LLVM)
 else()
@@ -8,8 +12,6 @@ else()
     LLVMCore
     LLVMipo
     LLVMPasses
-    DEPENDS
-    intrinsics_gen
     )
 endif()
 


        


More information about the llvm-commits mailing list