Skip to content

Commit 78deb4d

Browse files
committed
Added workaround to prevent building of the PS2SDK from failing, by disabling multi-core building. Related to #44.
1 parent 03e6562 commit 78deb4d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scripts/005-ps2sdk.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ else
2424
PROC_NR=$(nproc)
2525
fi
2626

27+
# Workaround 2018/10/18: unset PROC_NR (use -j only) as the ps2toolchain's Makefiles do not have dependencies set up properly.
28+
unset PROC_NR
29+
2730
## Build and install
2831
make clean && make -j $PROC_NR && make install && make clean || { exit 1; }
2932

0 commit comments

Comments
 (0)