summarylogtreecommitdiffstats
path: root/010-m64p-remove-build-jobs-limitation.patch
blob: c1c7c831fa2bd38712cfaa27d1c6badbaebbe8ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
diff -Naurp a/build.sh b/build.sh
--- a/build.sh	2020-04-24 14:06:44.000000000 +0000
+++ b/build.sh	2020-04-24 14:10:40.693877444 +0000
@@ -19,22 +19,22 @@ mkdir -p $install_dir
 base_dir=$PWD
 
 cd $base_dir/mupen64plus-core/projects/unix
-make OSD=0 NO_ASM=1 -j4 all
+make OSD=0 NO_ASM=1 all
 cp -P $base_dir/mupen64plus-core/projects/unix/*$suffix* $install_dir
 cp $base_dir/mupen64plus-core/data/* $install_dir
 
 cd $base_dir/mupen64plus-rsp-hle/projects/unix
-make -j4 all
+make all
 cp $base_dir/mupen64plus-rsp-hle/projects/unix/*$suffix $install_dir
 
 cd $base_dir/mupen64plus-input-raphnetraw/projects/unix
-make -j4 all
+make all
 cp $base_dir/mupen64plus-input-raphnetraw/projects/unix/*$suffix $install_dir
 
 mkdir -p $base_dir/mupen64plus-input-qt/build
 cd $base_dir/mupen64plus-input-qt/build
 qmake ../mupen64plus-input-qt.pro
-make -j4
+make
 if [[ $UNAME == *"MINGW"* ]]; then
   cp $base_dir/mupen64plus-input-qt/build/release/mupen64plus-input-qt.dll $install_dir
 else
@@ -42,13 +42,13 @@ else
 fi
 
 cd $base_dir/mupen64plus-audio-sdl2/projects/unix
-make -j4 all
+make all
 cp $base_dir/mupen64plus-audio-sdl2/projects/unix/*$suffix $install_dir
 
 mkdir -p $base_dir/mupen64plus-gui/build
 cd $base_dir/mupen64plus-gui/build
 qmake ../mupen64plus-gui.pro
-make -j4
+make
 if [[ $UNAME == *"MINGW"* ]]; then
   cp $base_dir/mupen64plus-gui/build/release/mupen64plus-gui.exe $install_dir
 else
@@ -62,7 +62,7 @@ cd $base_dir/GLideN64/src/GLideNUI
 mkdir -p build
 cd build
 qmake ../GLideNUI.pro
-make -j4
+make
 
 cd $base_dir/GLideN64/projects/cmake
 if [[ $UNAME == *"MINGW"* ]]; then
@@ -70,7 +70,7 @@ if [[ $UNAME == *"MINGW"* ]]; then
 else
   cmake -DNOHQ=On -DVEC4_OPT=On -DCRC_OPT=On -DMUPENPLUSAPI=On ../../src/
 fi
-make -j4
+make
 
 if [[ $UNAME == *"MINGW"* ]]; then
   cp mupen64plus-video-GLideN64$suffix $install_dir