@@ -466,7 +466,7 @@ def make_macos_arch(arch, cmake_args):
466466 build_dir = os .path .join (os .getcwd (), arch )
467467 cmake_args .append ('-DCMAKE_OSX_ARCHITECTURES=' + arch )
468468 subprocess .call (cmake_args , cwd = build_dir )
469- subprocess .call (['make' , '-j' ], cwd = build_dir )
469+ subprocess .call (['make' ], cwd = build_dir )
470470 subprocess .call (['cpack' , '.' ], cwd = build_dir )
471471
472472def make_macos_multi_arch_build (cmake_args ):
@@ -565,7 +565,7 @@ def make_tvos_target(device, arch, cmake_args):
565565 os .makedirs (arch )
566566 build_dir = os .path .join (os .getcwd (), arch )
567567 subprocess .call (build_args , cwd = build_dir )
568- subprocess .call (['make' , '-j' ], cwd = build_dir )
568+ subprocess .call (['make' ], cwd = build_dir )
569569 subprocess .call (['cpack' , '.' ], cwd = build_dir )
570570
571571def make_tvos_multi_arch_build (cmake_args ):
@@ -795,7 +795,7 @@ def main(argv):
795795 # no make command in windows. TODO make config passable
796796 subprocess .call ("cmake --build . --config Release" )
797797 else :
798- subprocess .call (["make" , "-j" ])
798+ subprocess .call (["make" ])
799799
800800 cmake_pack_args = [
801801 "cpack" ,
0 commit comments