Skip to content

Commit

Permalink
Add scripts for crosscompiling the toolchain using an already built n…
Browse files Browse the repository at this point in the history
…ative toolchain
  • Loading branch information
mstorsjo committed Oct 2, 2018
1 parent 8f15532 commit 773c029
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
21 changes: 21 additions & 0 deletions build-cross-tools.sh
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
33 changes: 33 additions & 0 deletions prepare-cross-toolchain.sh
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

0 comments on commit 773c029

Please sign in to comment.