diff options
| author | Oxore <oxore@protonmail.com> | 2022-06-18 19:35:55 +0300 |
|---|---|---|
| committer | Oxore <oxore@protonmail.com> | 2022-06-18 19:35:55 +0300 |
| commit | 5cddfc7214117a2a8e5c4a11429a33dde50edd19 (patch) | |
| tree | c67bd4ac20c3ae30e8186c957261fb6fde19ffc9 /6-build-gcc-stage-2.sh | |
| parent | b875d19191f659f88b8c43a7f08bf6df740b07c7 (diff) | |
Finally a working compiler with newlib
Diffstat (limited to '6-build-gcc-stage-2.sh')
| -rw-r--r-- | 6-build-gcc-stage-2.sh | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/6-build-gcc-stage-2.sh b/6-build-gcc-stage-2.sh deleted file mode 100644 index 3c39d46..0000000 --- a/6-build-gcc-stage-2.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -set -e -source ./common -export PATH="$prefix_dir/bin:${PATH:+:${PATH}}" - -mkdir -p build/gcc-$gcc_ver-stage-2 -cd build/gcc-$gcc_ver-stage-2 -echo "Configuring gcc-${gcc_ver} (stage 2)" -../../unpacked/gcc-$gcc_ver/configure --prefix=$prefix_dir --target=$target --enable-languages=c,c++ >configure-stage-2.log 2>&1 -if [ ! $? ]; then less configure-stage-2.log; exit; fi -echo "Building gcc-$gcc_ver (stage 2)" -make -j$jobs all-gcc >build-stage-2.log 2>&1 -if [ ! $? ]; then less build-stage-2.log; exit; fi -echo "Installing gcc-$gcc_ver (stage 2)" -make install-gcc >install-stage-2.log 2>&1 -if [ ! $? ]; then less install-stage-2.log; exit; fi -echo "Done with gcc-$gcc_ver (stage 2)" |
