projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
55c6222
)
Reverse the order libc++ and libc++abi are added in CMake.
author
Eric Fiselier
<eric@efcs.ca>
Wed, 4 Mar 2015 01:16:43 +0000
(
01:16
+0000)
committer
Eric Fiselier
<eric@efcs.ca>
Wed, 4 Mar 2015 01:16:43 +0000
(
01:16
+0000)
llvm-svn: 231190
llvm/projects/CMakeLists.txt
patch
|
blob
|
history
diff --git
a/llvm/projects/CMakeLists.txt
b/llvm/projects/CMakeLists.txt
index
8d244fd
..
428ce84
100644
(file)
--- a/
llvm/projects/CMakeLists.txt
+++ b/
llvm/projects/CMakeLists.txt
@@
-19,8
+19,10
@@
if(${LLVM_BUILD_RUNTIME})
# MSVC isn't quite working with libc++ yet, disable it until issues are
# fixed.
if(NOT MSVC)
- add_llvm_external_project(libcxx)
+ # libc++ uses the libc++abi target names so libc++abi should be added
+ # first.
add_llvm_external_project(libcxxabi)
+ add_llvm_external_project(libcxx)
endif()
if(NOT LLVM_BUILD_EXTERNAL_COMPILER_RT)
add_llvm_external_project(compiler-rt)