File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -148,14 +148,14 @@ object ScalaZ3Build {
148
148
val python = if ((" which python2.7" #> file(" /dev/null" )).! == 0 ) " python2.7" else " python"
149
149
150
150
val i1 = exec(python + " scripts/mk_make.py --java" , z3Path, s)
151
- if (i1 != 0 ) i1 else exec(" make" , z3Path / " build" , s)
151
+ if (i1 != 0 ) i1 else exec(" make -j " , z3Path / " build" , s)
152
152
} else if (isWindows) {
153
153
val i1 = if (is64b) exec(" python scripts/mk_make.py -x --java" , z3Path, s)
154
154
else exec(" python scripts/mk_make.py --java" , z3Path, s)
155
- if (i1 != 0 ) i1 else exec(" nmake" , z3Path / " build" , s)
155
+ if (i1 != 0 ) i1 else exec(" nmake -j " , z3Path / " build" , s)
156
156
} else if (isMac) {
157
157
val i1 = exec(" python scripts/mk_make.py --java" , z3Path, s)
158
- if (i1 != 0 ) i1 else exec(" make" , z3Path / " build" , s)
158
+ if (i1 != 0 ) i1 else exec(" make -j " , z3Path / " build" , s)
159
159
} else {
160
160
sys.error(" Don't know how to compile Z3 on arch: " + osInf + " - " + osArch)
161
161
}
You can’t perform that action at this time.
0 commit comments