aboutsummaryrefslogtreecommitdiff
path: root/cross.sh
diff options
context:
space:
mode:
authorMarvin Borner2020-01-03 22:14:55 +0100
committerMarvin Borner2020-01-03 22:14:55 +0100
commitfe74f33641696bc31022737ddf1d618dec20c87f (patch)
tree01f45cfa7d4a717a8429c9bb36f37e50029dfaea /cross.sh
parenta67919783e4c69644b24a0ced0d5373bb8adf794 (diff)
I don't like CMake
I switched to basic shell scripts now
Diffstat (limited to 'cross.sh')
-rw-r--r--cross.sh45
1 files changed, 0 insertions, 45 deletions
diff --git a/cross.sh b/cross.sh
deleted file mode 100644
index 4eb0953..0000000
--- a/cross.sh
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/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
-
- cd "${DIR}/.." || exit
-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