CI: remove BUILD_PARALLEL_GCC

This commit is contained in:
2024-06-04 14:38:54 +02:00
parent 60652bb43e
commit dddaf83543
3 changed files with 3 additions and 4 deletions

View File

@@ -9,7 +9,6 @@ on:
env:
BUILD_TYPE: Debug
BUILD_PARALLEL: 3
BUILD_PARALLEL_GCC: 3
jobs:
build-ficus-toolchain:

View File

@@ -22,9 +22,9 @@ if [ -z "${BUILD_PARALLEL}" ]
then
export BUILD_PARALLEL=$(nproc)
fi
if [ -z "${BUILD_PARALLEL_GCC}" ]
if [ -z "${BUILD_PARALLEL}" ]
then
export BUILD_PARALLEL_GCC=$BUILD_PARALLEL
export BUILD_PARALLEL=$BUILD_PARALLEL
fi
if [[ "$1" != "s2only" ]]

View File

@@ -30,7 +30,7 @@ popd
../gcc-13.2.0/configure --target=$TARGET --prefix="$PREFIX" --with-sysroot="$PREFIX/../../sysroot" --disable-nls \
--enable-languages=c,c++ --with-newlib --disable-fixincludes --disable-libstdcxx-threads \
--enable-version-specific-runtime-libs
make -j$BUILD_PARALLEL_GCC all-gcc
make -j$BUILD_PARALLEL all-gcc
make -j$BUILD_PARALLEL all-target-libgcc
make -j$BUILD_PARALLEL all-target-libstdc++-v3
make install-gcc