Skip to content

Commit

Permalink
Merge pull request #1605 from LABurn/fix-python-binding-compilation-e…
Browse files Browse the repository at this point in the history
…rror

Fix Python bindings build
  • Loading branch information
wtdcode authored May 3, 2022
2 parents 659a62a + 84849bd commit 347dbb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def build_libraries():
subprocess.check_call(cmake_args)
os.chdir(BUILD_DIR)
threads = os.getenv("THREADS", "4")
subprocess.check_call(["cmake", "--build", ".", "-j" + threads])
subprocess.check_call(["cmake", "--build", ".", "--", "-j" + threads])

shutil.copy(LIBRARY_FILE, LIBS_DIR)
try:
Expand Down

0 comments on commit 347dbb3

Please sign in to comment.