mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
Toolchain: Fix indentation in BuildIt.sh (#761)
This commit is contained in:
parent
dd2900eda0
commit
2d19072115
Notes:
sideshowbarker
2024-07-19 11:15:44 +09:00
Author: https://github.com/sleepy-monax Commit: https://github.com/SerenityOS/serenity/commit/2d19072115a Pull-request: https://github.com/SerenityOS/serenity/pull/761
1 changed files with 8 additions and 8 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue