Skip to content

Commit 4129bf4

Browse files
committed
Also install with multiple jobs
1 parent 5beb69c commit 4129bf4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,8 @@ def build_isa_l(compiler_command: str, compiler_options: str):
151151
subprocess.run(os.path.join(build_dir, "autogen.sh"), **run_args)
152152
subprocess.run([os.path.join(build_dir, "configure"),
153153
"--prefix", temp_prefix], **run_args)
154-
subprocess.run(["make", "-j", str(cpu_count)],
155-
**run_args)
156-
subprocess.run(["make", "install"], **run_args)
154+
subprocess.run(["make", "-j", str(cpu_count)], **run_args)
155+
subprocess.run(["make", "-j", str(cpu_count), "install"], **run_args)
157156
elif SYSTEM_IS_WINDOWS:
158157
subprocess.run(["nmake", "/E", "/f", "Makefile.nmake"], **run_args)
159158
Path(temp_prefix, "include").mkdir()

0 commit comments

Comments
 (0)