mirror of
https://github.com/RPCSX/xed.git
synced 2024-11-23 11:39:40 +00:00
10 lines
259 B
Python
10 lines
259 B
Python
|
import os
|
||
|
import platform
|
||
|
import subprocess
|
||
|
|
||
|
for size in ['ia32','x86-64']:
|
||
|
for link in ['','--shared']:
|
||
|
cmd = 'python mfile.py --build-dir=build host_cpu=%s %s test' % (size,link)
|
||
|
print(cmd)
|
||
|
subprocess.check_call(cmd, shell=True)
|