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:
16fe61a
)
[libc++][Apple] Make sure to set the LIBCXX_LIBRARY_VERSION when building for Apple
author
Louis Dionne
<ldionne.2@gmail.com>
Sat, 18 Mar 2023 16:10:31 +0000
(12:10 -0400)
committer
Louis Dionne
<ldionne.2@gmail.com>
Sat, 18 Mar 2023 20:22:00 +0000
(16:22 -0400)
Differential Revision: https://reviews.llvm.org/
D146361
libcxx/utils/ci/apple-install-libcxx.sh
patch
|
blob
|
history
diff --git
a/libcxx/utils/ci/apple-install-libcxx.sh
b/libcxx/utils/ci/apple-install-libcxx.sh
index e12e295bffb1ad068e9d351738130979d611b162..c1d810256225a65678a1bfa4f527edde9cc5591e 100755
(executable)
--- a/
libcxx/utils/ci/apple-install-libcxx.sh
+++ b/
libcxx/utils/ci/apple-install-libcxx.sh
@@
-119,7
+119,8
@@
for arch in ${architectures}; do
-DCMAKE_INSTALL_PREFIX="${build_dir}/${arch}-install" \
-DCMAKE_INSTALL_NAME_DIR="/usr/lib" \
-DCMAKE_OSX_ARCHITECTURES="${arch}" \
- -DLIBCXXABI_LIBRARY_VERSION="${version}"
+ -DLIBCXXABI_LIBRARY_VERSION="${version}" \
+ -DLIBCXX_LIBRARY_VERSION="${version}"
if [ "$headers_only" = true ]; then
xcrun cmake --build "${build_dir}/${arch}" --target install-cxx-headers install-cxxabi-headers -- -v