Skip to content

Commit 5ba9e1e

Browse files
committed
prepare-cross-toolchain: Copy the libc++ module sources
1 parent 9786255 commit 5ba9e1e

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

prepare-cross-toolchain-unix.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,7 @@ cp -a $CLANG_RESOURCE_DIR $DEST/lib/clang/$CLANG_VERSION
4848
for arch in generic $ARCHS; do
4949
cp -a $SRC/$arch-w64-mingw32 $DEST/$arch-w64-mingw32
5050
done
51+
52+
# Copy the libc++ module sources
53+
rm -rf $DEST/share/libc++
54+
cp -a $SRC/share/libc++ $DEST/share

prepare-cross-toolchain.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,7 @@ for arch in $ARCHS; do
6666
cp -a $SRC/$arch-w64-mingw32/$subdir $DEST/$arch-w64-mingw32
6767
done
6868
done
69+
70+
# Copy the libc++ module sources
71+
rm -rf $DEST/share/libc++
72+
cp -a $SRC/share/libc++ $DEST/share

0 commit comments

Comments
 (0)