Skip to content

Commit 52c5ccb

Browse files
On 64-bit OSs compiling Mupen64bit requires more swap
1 parent 6165d6d commit 52c5ccb

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

scriptmodules/emulators/mupen64plus.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,11 @@ function sources_mupen64plus() {
152152
}
153153

154154
function build_mupen64plus() {
155-
rpSwap on 750
155+
if isPlatform "64bit"; then
156+
rpSwap on 2048
157+
else
158+
rpSwap on 750
159+
fi
156160

157161
local dir
158162
local params=()

scriptmodules/libretrocores/lr-mupen64plus.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,11 @@ function sources_lr-mupen64plus() {
5252
}
5353

5454
function build_lr-mupen64plus() {
55-
rpSwap on 750
55+
if isPlatform "64bit"; then
56+
rpSwap on 2048
57+
else
58+
rpSwap on 750
59+
fi
5660
local params=()
5761
if isPlatform "videocore"; then
5862
params+=(platform="$__platform")

0 commit comments

Comments
 (0)