]> granicus.if.org Git - llvm/commitdiff
[Modules] Rework r274270. Let Clang targets depend on intrinsics_gen.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Sun, 23 Jul 2017 05:09:44 +0000 (05:09 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Sun, 23 Jul 2017 05:09:44 +0000 (05:09 +0000)
This gets rid of almost LLVM targets unconditionally depending on intrinsic_gen.

Clang's modules still have weird dependencies and hard to remove intrinsics_gen in better way.
Then, it'd be better to give whole clang targets depend on intrinsic_gen.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@308844 91177308-0d34-0410-b5e6-96231b3b80d8

CMakeLists.txt

index 115f39993dbdbdca6eb3bf9e692cfbf36fdfd1ba..c38c59843eaee4013a9f823f5b90ba31cc219fb0 100644 (file)
@@ -845,15 +845,6 @@ add_subdirectory(lib/TableGen)
 
 add_subdirectory(utils/TableGen)
 
-# Force target to be built as soon as possible. Clang modules builds depend
-# header-wise on it as they ship all headers from the umbrella folders. Building
-# an entire module might include header, which depends on intrinsics_gen. This
-# should be right after LLVMSupport and LLVMTableGen otherwise we introduce a
-# circular dependence.
-if (LLVM_ENABLE_MODULES)
-  list(APPEND LLVM_COMMON_DEPENDS intrinsics_gen)
-endif(LLVM_ENABLE_MODULES)
-
 add_subdirectory(include/llvm)
 
 add_subdirectory(lib)