gcc 6.3 seems to have problems with make -j8

This commit is contained in:
Wolfgang Thaller 2017-04-12 11:53:47 +02:00
parent 71f78cceb8
commit 4564e9e774

View File

@ -54,7 +54,8 @@ cd ..
mkdir -p gcc-build
cd gcc-build
$SRC/gcc/configure --target=m68k-apple-macos --prefix=$PREFIX --enable-languages=c,c++ --with-arch=m68k --with-cpu=m68000 --disable-libssp MAKEINFO=missing
make -j8
# There seems to be a build failure in parallel builds; ignore any errors and try again without -j8.
make -j8 || make
make install
cd ..