Skip to content

Commit

Permalink
Toolchain: Fix indentation in BuildIt.sh (SerenityOS#761)
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepy-monax authored and awesomekling committed Nov 11, 2019
1 parent dd2900e commit 2d19072
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Toolchain/BuildIt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,20 +74,20 @@ pushd "$DIR/Build/"

pushd binutils
"$DIR"/Tarballs/binutils-2.32/configure --prefix="$PREFIX" \
--target="$TARGET" \
--with-sysroot="$SYSROOT" \
--disable-nls || exit 1
--target="$TARGET" \
--with-sysroot="$SYSROOT" \
--disable-nls || exit 1
make -j "$MAKEJOBS" || exit 1
make install || exit 1
popd

pushd gcc
"$DIR"/Tarballs/gcc-8.3.0/configure --prefix="$PREFIX" \
--target="$TARGET" \
--with-sysroot="$SYSROOT" \
--disable-nls \
--with-newlib \
--enable-languages=c,c++ || exit 1
--target="$TARGET" \
--with-sysroot="$SYSROOT" \
--disable-nls \
--with-newlib \
--enable-languages=c,c++ || exit 1

echo "XXX build gcc and libgcc"
make -j "$MAKEJOBS" all-gcc all-target-libgcc || exit 1
Expand Down

0 comments on commit 2d19072

Please sign in to comment.