diff options
author | Marvin Borner | 2020-01-02 22:59:46 +0100 |
---|---|---|
committer | Marvin Borner | 2020-01-02 22:59:46 +0100 |
commit | 18cf494861766b17001785967594252651920d19 (patch) | |
tree | be6982400e9c792d74c5e606772bfbd5eff33f53 /cross.sh | |
parent | 86f4ea797a6f6c9b988a7b055c053a618e9013bb (diff) |
Bye-bye Make, Hi-hi Cmake!
Diffstat (limited to 'cross.sh')
-rw-r--r-- | cross.sh | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/cross.sh b/cross.sh new file mode 100644 index 0000000..6a4c21c --- /dev/null +++ b/cross.sh @@ -0,0 +1,47 @@ +#!/usr/bin/env sh +# Sets up a cross compiler + +if [ ! -d "./cross/" ]; then + # Create directory + mkdir -p cross + cd cross || exit + DIR=$(pwd) + + # Get sources + mkdir "${DIR}/src" && cd "${DIR}/src" || exit + echo "Downloading..." + curl -sSL "https://ftp.gnu.org/gnu/binutils/binutils-2.32.tar.xz" | tar xJ + curl -sSL "https://ftp.gnu.org/gnu/gcc/gcc-9.2.0/gcc-9.2.0.tar.xz" | tar xJ + + # Prepare compiling + mkdir -p "${DIR}/opt/bin" + export PREFIX="${DIR}/opt" + export TARGET=i686-elf + export PATH="$PREFIX/bin:$PATH" + + # Compile binutilsq + mkdir "${DIR}/src/build-binutils" && cd "${DIR}/src/build-binutils" || exit + ../binutils-2.32/configure --target="$TARGET" --prefix="$PREFIX" --with-sysroot --disable-nls --disable-werror + make + make install + + # Compile GCC + mkdir "${DIR}/src/build-gcc" && cd "${DIR}/src/build-gcc" || exit + ../gcc-9.2.0/configure --target="$TARGET" --prefix="$PREFIX" --disable-nls --enable-languages=c,c++ --without-headers + make all-gcc + make all-target-libgcc + make install-gcc + make install-target-libgcc + + # Source exported variables + cd "${DIR}/.." || exit + . cross.sh +else + # Should be sourced to take effect + cd cross || exit + DIR=$(pwd) + export PREFIX="${DIR}/opt" + export TARGET=i686-elf + export PATH="$PREFIX/bin:$PATH" + cd .. +fi
\ No newline at end of file |