Fix typos

This commit is contained in:
Alex Kotov 2022-01-17 23:47:26 +05:00
parent b7315b7fd4
commit 537ce7fa9f
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
1 changed files with 2 additions and 2 deletions

View File

@ -13,11 +13,11 @@ PATH="$ROOT/bin:$PATH"
if [ -z "$J" ]; then J='1'; fi
cd "$REPO/build/$ARCH/binutils"
"$REPO/binutils-2.37/configure" --target="$TARGET" --prefix="$ROOT" --with-sysroot --disable-nls --disable-werror
"$REPO/src/binutils-2.37/configure" --target="$TARGET" --prefix="$ROOT" --with-sysroot --disable-nls --disable-werror
make -j"$J"
make install
cd "$REPO/build/$ARCH/gcc"
"$REPO/gcc-11.2.0/configure" --target="$TARGET" --prefix="$ROOT" --disable-nls --enable-languages=c,c++ --without-headers
"$REPO/src/gcc-11.2.0/configure" --target="$TARGET" --prefix="$ROOT" --disable-nls --enable-languages=c,c++ --without-headers
make -j"$J" all-gcc all-target-libgcc
make install-gcc install-target-libgcc