diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2016-09-06 20:16:19 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2016-09-06 20:16:19 +0000 |
| commit | ec73f5dacf1da07eb60321f843cd0d6bbbf9e1bc (patch) | |
| tree | a8de0ce23493b769792728398498c508eefff9a3 | |
| parent | b0b17469629b58de2183f4648c3d124d44820414 (diff) | |
| download | bcm5719-llvm-ec73f5dacf1da07eb60321f843cd0d6bbbf9e1bc.tar.gz bcm5719-llvm-ec73f5dacf1da07eb60321f843cd0d6bbbf9e1bc.zip | |
Try to fix a circular dependency in the modules build.
llvm-svn: 280746
| -rw-r--r-- | llvm/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | llvm/lib/CMakeLists.txt | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/llvm/CMakeLists.txt b/llvm/CMakeLists.txt index 83f44b8a878..8d808664c1e 100644 --- a/llvm/CMakeLists.txt +++ b/llvm/CMakeLists.txt @@ -743,6 +743,7 @@ if( MINGW ) endif() # Put this before tblgen. Else we have a circular dependence. +add_subdirectory(lib/Demangle) add_subdirectory(lib/Support) add_subdirectory(lib/TableGen) diff --git a/llvm/lib/CMakeLists.txt b/llvm/lib/CMakeLists.txt index 6b8846314ec..54aa0a9e328 100644 --- a/llvm/lib/CMakeLists.txt +++ b/llvm/lib/CMakeLists.txt @@ -1,6 +1,6 @@ -# `Support' and `TableGen' libraries are added on the top-level CMakeLists.txt +# `Demangle', `Support' and `TableGen' libraries are added on the top-level +# CMakeLists.txt -add_subdirectory(Demangle) add_subdirectory(IR) add_subdirectory(IRReader) add_subdirectory(CodeGen) |

