From 78deb4d3cf435f6fab76b35dbaab74ce6503a0a4 Mon Sep 17 00:00:00 2001 From: SP193 Date: Thu, 18 Oct 2018 22:18:34 +0800 Subject: [PATCH] Added workaround to prevent building of the PS2SDK from failing, by disabling multi-core building. Related to #44. --- scripts/005-ps2sdk.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/005-ps2sdk.sh b/scripts/005-ps2sdk.sh index 5b68b75..412518a 100755 --- a/scripts/005-ps2sdk.sh +++ b/scripts/005-ps2sdk.sh @@ -24,6 +24,9 @@ else PROC_NR=$(nproc) fi +# Workaround 2018/10/18: unset PROC_NR (use -j only) as the ps2toolchain's Makefiles do not have dependencies set up properly. +unset PROC_NR + ## Build and install make clean && make -j $PROC_NR && make install && make clean || { exit 1; }