mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:17:44 +00:00
Toolchain: Fix indentation in BuildIt.sh (#761)
This commit is contained in:
parent
dd2900eda0
commit
2d19072115
1 changed files with 8 additions and 8 deletions
|
@ -74,20 +74,20 @@ pushd "$DIR/Build/"
|
||||||
|
|
||||||
pushd binutils
|
pushd binutils
|
||||||
"$DIR"/Tarballs/binutils-2.32/configure --prefix="$PREFIX" \
|
"$DIR"/Tarballs/binutils-2.32/configure --prefix="$PREFIX" \
|
||||||
--target="$TARGET" \
|
--target="$TARGET" \
|
||||||
--with-sysroot="$SYSROOT" \
|
--with-sysroot="$SYSROOT" \
|
||||||
--disable-nls || exit 1
|
--disable-nls || exit 1
|
||||||
make -j "$MAKEJOBS" || exit 1
|
make -j "$MAKEJOBS" || exit 1
|
||||||
make install || exit 1
|
make install || exit 1
|
||||||
popd
|
popd
|
||||||
|
|
||||||
pushd gcc
|
pushd gcc
|
||||||
"$DIR"/Tarballs/gcc-8.3.0/configure --prefix="$PREFIX" \
|
"$DIR"/Tarballs/gcc-8.3.0/configure --prefix="$PREFIX" \
|
||||||
--target="$TARGET" \
|
--target="$TARGET" \
|
||||||
--with-sysroot="$SYSROOT" \
|
--with-sysroot="$SYSROOT" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
--with-newlib \
|
--with-newlib \
|
||||||
--enable-languages=c,c++ || exit 1
|
--enable-languages=c,c++ || exit 1
|
||||||
|
|
||||||
echo "XXX build gcc and libgcc"
|
echo "XXX build gcc and libgcc"
|
||||||
make -j "$MAKEJOBS" all-gcc all-target-libgcc || exit 1
|
make -j "$MAKEJOBS" all-gcc all-target-libgcc || exit 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue