From 677d65bf8dcda90b82b8a43b8b4295a811c0d579 Mon Sep 17 00:00:00 2001 From: Francisco Javier Trujillo Mata Date: Wed, 20 Mar 2019 22:32:12 +0100 Subject: [PATCH] Remove the parallel compilation for PS2 in the dist-scripts --- dist-scripts/dist-cores.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dist-scripts/dist-cores.sh b/dist-scripts/dist-cores.sh index c2fd89ba4c..8f2b3365f5 100755 --- a/dist-scripts/dist-cores.sh +++ b/dist-scripts/dist-cores.sh @@ -231,6 +231,9 @@ for f in `ls -v *_${platform}.${EXT}`; do make -C ../ -f Makefile.${platform} $OPTS LIBRETRO=$name $whole_archive $big_stack -j3 || exit 1 elif [ $PLATFORM = "libnx" ]; then make -C ../ -f Makefile.${platform} $OPTS APP_TITLE="$name" LIBRETRO=$name $whole_archive $big_stack -j3 || exit 1 + elif [ $PLATFORM = "ps2" ]; then + # TODO PS2 should be able to compile in parallel + make -C ../ -f Makefile.${platform} $OPTS $whole_archive $big_stack || exit 1 else make -C ../ -f Makefile.${platform} $OPTS $whole_archive $big_stack -j3 || exit 1 fi