From 05fa5034d39e4fb7099f1367f6710911f5f19f36 Mon Sep 17 00:00:00 2001 From: Lightos1 <124387232+Lightos1@users.noreply.github.com> Date: Sun, 10 May 2026 00:44:27 +0200 Subject: [PATCH] Revert "build.sh: use make -j rather than -j8" This reverts commit 8a98a57b4b06a195dee4589ad9ddfd402f1a4a91. Thansk to microslops amazing memory management, make -j sometimes runs out of ram on my system when compiling libstratosphere. This can hang my entire system and also corrupt ram??? WTF --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index c66cb3ce..b8bd22b9 100644 --- a/build.sh +++ b/build.sh @@ -8,7 +8,7 @@ mkdir -p "$DEST" cp -r "$SRC"/. "$DEST"/ cd build/stratosphere/loader || exit 1 -make -j +make -j8 hactool -t kip1 out/nintendo_nx_arm64_armv8a/release/loader.kip --uncompress=hoc.kip cd ../../../ # exit cp build/stratosphere/loader/hoc.kip dist/atmosphere/kips/hoc.kip @@ -20,5 +20,5 @@ cp -r dist/ ../../ cd ../../ cd Source/Horizon-OC-Monitor/ -make -j +make -j8 cp Horizon-OC-Monitor.ovl ../../dist/switch/.overlays/Horizon-OC-Monitor.ovl \ No newline at end of file