forked from mstorsjo/llvm-mingw
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add scripts for crosscompiling the toolchain using an already built n…
…ative toolchain
- Loading branch information
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
if [ $# -lt 3 ]; then | ||
echo $0 native prefix arch | ||
exit 1 | ||
fi | ||
NATIVE="$1" | ||
PREFIX="$2" | ||
CROSS_ARCH="$3" | ||
|
||
export PATH=$NATIVE/bin:$PATH | ||
export EXEEXT=.exe | ||
export HOST=$CROSS_ARCH-w64-mingw32 | ||
|
||
./build-llvm.sh $PREFIX | ||
./strip-llvm.sh $PREFIX | ||
./install-wrappers.sh $PREFIX | ||
./build-mingw-w64-widl.sh $PREFIX | ||
./prepare-cross-toolchain.sh $NATIVE $PREFIX $CROSS_ARCH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
if [ $# -lt 3 ]; then | ||
echo $0 src dest arch | ||
exit 1 | ||
fi | ||
SRC="$1" | ||
DEST="$2" | ||
CROSS_ARCH="$3" | ||
|
||
: ${ARCHS:=${TOOLCHAIN_ARCHS-i686 x86_64 armv7 aarch64}} | ||
|
||
CLANG_VERSION=$(basename $(dirname $(dirname $(dirname $($SRC/bin/clang --print-libgcc-file-name -rtlib=compiler-rt))))) | ||
|
||
# If linked to a shared libc++/libunwind, we need to bundle those DLLs | ||
# in the bin directory. | ||
for i in libc++ libunwind; do | ||
if [ -f $SRC/$CROSS_ARCH-w64-mingw32/bin/$i.dll ]; then | ||
cp $SRC/$CROSS_ARCH-w64-mingw32/bin/$i.dll $DEST/bin | ||
fi | ||
done | ||
|
||
cp -a $SRC/lib/clang/$CLANG_VERSION/lib $DEST/lib/clang/$CLANG_VERSION | ||
rm -rf $DEST/include | ||
cp -a $SRC/generic-w64-mingw32/include $DEST/include | ||
for arch in $ARCHS; do | ||
mkdir -p $DEST/$arch-w64-mingw32 | ||
for subdir in bin lib; do | ||
cp -a $SRC/$arch-w64-mingw32/$subdir $DEST/$arch-w64-mingw32 | ||
done | ||
done |