diff options
author | Marvin Borner | 2020-04-28 18:32:36 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-28 18:32:36 +0200 |
commit | 4b8518b4e791c68154ec52badcc921b62afafb49 (patch) | |
tree | 9c855266cf7451f503bf3cb849e63ac72ae48e74 /run | |
parent | 46007d2598b7aef13895b21669cfb6f24272e5fe (diff) |
Maaaany fixes...
Sorry for the increasingly worse-getting commit messages :D
Diffstat (limited to 'run')
-rwxr-xr-x | run | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -54,8 +54,8 @@ make_cross() { # Get sources mkdir "${DIR}/src" && cd "${DIR}/src" 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 + curl -sSL "https://ftp.gnu.org/gnu/binutils/binutils-2.34.tar.xz" | tar xJ + curl -sSL "https://ftp.gnu.org/gnu/gcc/gcc-9.3.0/gcc-9.3.0.tar.xz" | tar xJ # Prepare compiling mkdir -p "${DIR}/opt/bin" @@ -65,13 +65,13 @@ make_cross() { # Compile binutils mkdir "${DIR}/src/build-binutils" && cd "${DIR}/src/build-binutils" - ../binutils-2.32/configure --target="$TARGET" --prefix="$PREFIX" --with-sysroot --disable-nls --disable-werror + ../binutils-2.34/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" - ../gcc-9.2.0/configure --target="$TARGET" --prefix="$PREFIX" --disable-nls --enable-languages=c,c++ --without-headers + ../gcc-9.3.0/configure --target="$TARGET" --prefix="$PREFIX" --disable-nls --enable-languages=c,c++ --without-headers make all-gcc make all-target-libgcc make install-gcc @@ -216,5 +216,5 @@ elif [ "${mode}" = "font" ]; then make_tidy else echo "Please use the following syntax:" - echo "./run {cross | build | clean | test | debug | image | sync | tidy | font}" + echo "./run {cross | build | clean | test | debug | image | sync | tidy | font} [-y]" fi |