We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 373988f commit dfd8008Copy full SHA for dfd8008
projects/CMakeLists.txt
@@ -22,11 +22,11 @@ if(${LLVM_BUILD_RUNTIME})
22
# MSVC isn't quite working with libc++ yet, disable it until issues are
23
# fixed.
24
if(NOT MSVC)
25
- # libc++ uses the libc++abi target names so libc++abi should be added
26
- # first.
+ # Add the projects in reverse order of their dependencies so that the
+ # dependent projects can see the target names of their dependencies.
27
+ add_llvm_external_project(libunwind)
28
add_llvm_external_project(libcxxabi)
29
add_llvm_external_project(libcxx)
- add_llvm_external_project(libunwind)
30
endif()
31
if(NOT LLVM_BUILD_EXTERNAL_COMPILER_RT)
32
add_llvm_external_project(compiler-rt)
0 commit comments