summaryrefslogtreecommitdiffstats
path: root/projects
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2016-10-09 20:38:29 +0000
committerEric Fiselier <eric@efcs.ca>2016-10-09 20:38:29 +0000
commitdfd800898f3219443b768049cbabcda74493aaeb (patch)
treecdc2f7ecc89d1faecd38218a1517b5bb4d2f06df /projects
parent373988f36ae028d872037cfd7bd0ee95f26edffc (diff)
[CMake] Correct configuration order of the sub-projects based on ther dependancies
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@283698 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects')
-rw-r--r--projects/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/projects/CMakeLists.txt b/projects/CMakeLists.txt
index 82fd6c8c9c7b..2122665c0dc4 100644
--- a/projects/CMakeLists.txt
+++ b/projects/CMakeLists.txt
@@ -22,11 +22,11 @@ if(${LLVM_BUILD_RUNTIME})
# MSVC isn't quite working with libc++ yet, disable it until issues are
# fixed.
if(NOT MSVC)
- # libc++ uses the libc++abi target names so libc++abi should be added
- # first.
+ # Add the projects in reverse order of their dependencies so that the
+ # dependent projects can see the target names of their dependencies.
+ add_llvm_external_project(libunwind)
add_llvm_external_project(libcxxabi)
add_llvm_external_project(libcxx)
- add_llvm_external_project(libunwind)
endif()
if(NOT LLVM_BUILD_EXTERNAL_COMPILER_RT)
add_llvm_external_project(compiler-rt)