aboutsummaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorMarvin Borner2021-05-18 15:14:55 +0200
committerMarvin Borner2021-05-18 15:14:55 +0200
commiteb13f2a8f536fecf918699bc19b3087a78a417d6 (patch)
treee263731e4bd2a2ca8dea97add450b0e217d37e99 /run
parentdf5a8c5b32733ae5e2d872b1c7baa4311a9d2308 (diff)
New toolchain versions
Diffstat (limited to 'run')
-rwxr-xr-xrun13
1 files changed, 7 insertions, 6 deletions
diff --git a/run b/run
index 61d9702..8d647eb 100755
--- a/run
+++ b/run
@@ -48,37 +48,38 @@ make_cross() {
# Get sources
mkdir "${DIR}/src" && cd "${DIR}/src"
echo "Downloading..."
- curl "https://ftp.gnu.org/gnu/binutils/binutils-2.33.1.tar.gz" >binutils.tar.gz
+ curl "https://ftp.gnu.org/gnu/binutils/binutils-2.36.1.tar.gz" >binutils.tar.gz
tar xzf binutils.tar.gz
- curl "https://ftp.gnu.org/gnu/gcc/gcc-9.2.0/gcc-9.2.0.tar.gz" >gcc.tar.gz
+ curl "https://ftp.gnu.org/gnu/gcc/gcc-11.1.0/gcc-11.1.0.tar.gz" >gcc.tar.gz
tar xzf gcc.tar.gz
# Prepare compiling
mkdir -p "${DIR}/opt/bin"
+ export CFLAGS="-g0 -O2"
export PREFIX="${DIR}/opt"
export TARGET=i686-elf
export PATH="$PREFIX/bin:$PATH"
if [ "$(uname -s)" = "OpenBSD" ]; then
export with_gmp=/usr/local
- sed -i 's/-no-pie/-nopie/g' "${DIR}/src/gcc-9.2.0/gcc/configure"
+ sed -i 's/-no-pie/-nopie/g' "${DIR}/src/gcc-11.1.0/gcc/configure"
fi
# Compile binutils
mkdir "${DIR}/src/build-binutils" && cd "${DIR}/src/build-binutils"
- ../binutils-2.33.1/configure --target="$TARGET" --prefix="$PREFIX" --with-sysroot --disable-nls --disable-werror
+ ../binutils-2.36.1/configure --target="$TARGET" --prefix="$PREFIX" --with-sysroot --disable-nls --disable-werror
$MAKE -j $($NPROC)
$MAKE install
# Compile GCC
mkdir "${DIR}/src/build-gcc" && cd "${DIR}/src/build-gcc"
- ../gcc-9.2.0/configure --target="$TARGET" --prefix="$PREFIX" --disable-nls --enable-languages=c --without-headers
+ ../gcc-11.1.0/configure --target="$TARGET" --prefix="$PREFIX" --disable-nls --enable-languages=c --without-headers
$MAKE -j $($NPROC) all-gcc all-target-libgcc
$MAKE install-gcc install-target-libgcc
# Fix things
if [ "$(uname -s)" = "OpenBSD" ]; then
- cd "${DIR}/opt/libexec/gcc/i686-elf/9.2.0/" && ln -sf liblto_plugin.so.0.0 liblto_plugin.so
+ cd "${DIR}/opt/libexec/gcc/i686-elf/11.1.0/" && ln -sf liblto_plugin.so.0.0 liblto_plugin.so
fi
cd "${DIR}/.."