Skip to content

Commit 34b5552

Browse files
committed
Make compilation go brrrrrrrrr
1 parent fab95db commit 34b5552

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sm_osx/RomView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ struct RomView: View {
8686
status = .compiling
8787

8888
do {
89-
log.append(try shell("cd ~/Downloads/sm64ex-coop && gmake OSX_BUILD=1 TARGET_ARCH=x86_64-apple-darwin TARGET_BITS=64 BETTERCAMERA=\(betterCamera) NODRAWDISTANCE=\(drawDistance)"))
89+
log.append(try shell("cd ~/Downloads/sm64ex-coop && gmake OSX_BUILD=1 TARGET_ARCH=x86_64-apple-darwin TARGET_BITS=64 BETTERCAMERA=\(betterCamera) NODRAWDISTANCE=\(drawDistance) -j6"))
9090
}
9191
catch {
9292
status = .error
@@ -184,7 +184,7 @@ struct RomView: View {
184184
status = .compiling
185185

186186
do {
187-
log.append(try shell("cd ~/Downloads/sm64ex && gmake OSX_BUILD=1 TARGET_ARCH=x86_64-apple-darwin TARGET_BITS=64 BETTERCAMERA=\(betterCamera) NODRAWDISTANCE=\(drawDistance)"))
187+
log.append(try shell("cd ~/Downloads/sm64ex && gmake OSX_BUILD=1 TARGET_ARCH=x86_64-apple-darwin TARGET_BITS=64 BETTERCAMERA=\(betterCamera) NODRAWDISTANCE=\(drawDistance) -j6"))
188188
}
189189
catch {
190190
status = .error

0 commit comments

Comments
 (0)