@@ -97,7 +97,7 @@ def check_i686_w64_available():
9797with open (os .path .join (rwd , 'README.md' ), encoding = 'u8' ) as f :
9898 long_description = f .read ()
9999
100- cpu_count = multiprocessing .cpu_count ()
100+ cpu_count = 1 # multiprocessing.cpu_count()
101101eC_dir = os .path .join (os .path .dirname (__file__ ), 'eC' )
102102eC_c_dir = os .path .join (os .path .dirname (__file__ ), 'eC' , 'bindings' , 'c' )
103103eC_py_dir = os .path .join (os .path .dirname (__file__ ), 'eC' , 'bindings' , 'py' )
@@ -126,7 +126,7 @@ def build_package():
126126 #subprocess.check_call(['gcc', '-v', '-m32'], cwd=eC_dir, env=env)
127127 #subprocess.check_call(['gcc', '-print-sysroot', '-m32'], cwd=eC_dir, env=env)
128128 #subprocess.check_call([make_cmd, f'troubleshoot'], cwd=eC_dir, env=env)
129- make_and_args = [make_cmd , f'-j{ cpu_count } ' , 'SKIP_SONAME=y' ] # , 'V=1']
129+ make_and_args = [make_cmd , f'-j{ cpu_count } ' , 'SKIP_SONAME=y' , 'V=1' ]
130130 if cc_override is not None :
131131 make_and_args .extend (cc_override )
132132
0 commit comments