@@ -466,7 +466,7 @@ def make_macos_arch(arch, cmake_args):
466
466
build_dir = os .path .join (os .getcwd (), arch )
467
467
cmake_args .append ('-DCMAKE_OSX_ARCHITECTURES=' + arch )
468
468
subprocess .call (cmake_args , cwd = build_dir )
469
- subprocess .call (['make' , '-j' ], cwd = build_dir )
469
+ subprocess .call (['make' ], cwd = build_dir )
470
470
subprocess .call (['cpack' , '.' ], cwd = build_dir )
471
471
472
472
def make_macos_multi_arch_build (cmake_args ):
@@ -565,7 +565,7 @@ def make_tvos_target(device, arch, cmake_args):
565
565
os .makedirs (arch )
566
566
build_dir = os .path .join (os .getcwd (), arch )
567
567
subprocess .call (build_args , cwd = build_dir )
568
- subprocess .call (['make' , '-j' ], cwd = build_dir )
568
+ subprocess .call (['make' ], cwd = build_dir )
569
569
subprocess .call (['cpack' , '.' ], cwd = build_dir )
570
570
571
571
def make_tvos_multi_arch_build (cmake_args ):
@@ -795,7 +795,7 @@ def main(argv):
795
795
# no make command in windows. TODO make config passable
796
796
subprocess .call ("cmake --build . --config Release" )
797
797
else :
798
- subprocess .call (["make" , "-j" ])
798
+ subprocess .call (["make" ])
799
799
800
800
cmake_pack_args = [
801
801
"cpack" ,
0 commit comments