mirror of
https://github.com/RPCSX/xed.git
synced 2024-11-23 03:29:39 +00:00
4a58e9fd03
Change-Id: I057cb212dedd7d8b22866d85de8afc025383e00a
36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
import os
|
|
import platform
|
|
import subprocess
|
|
|
|
def get_python_cmds():
|
|
if platform.system() == 'Windows':
|
|
lst = []
|
|
pyvers = ['27','35']
|
|
#pyvers = ['27']
|
|
for pyver in pyvers:
|
|
pycmd = 'C:/python{}/python'.format(pyver)
|
|
lst.append((pyver,pycmd))
|
|
return lst
|
|
elif platform.system() == 'Linux':
|
|
lst = []
|
|
pyvers = ['2.7','3.5.2']
|
|
#pyvers = ['2.7']
|
|
for pyver in pyvers:
|
|
pycmd = '/opt/python/{}/bin/python'.format(pyver)
|
|
lst.append((pyver,pycmd))
|
|
return lst
|
|
|
|
return [('dfltpython','python')]
|
|
|
|
|
|
for pyver,pycmd in get_python_cmds():
|
|
cmd = '{} -m pip install --user https://github.com/intelxed/mbuild/zipball/master'.format(pycmd)
|
|
print(cmd)
|
|
subprocess.check_call(cmd, shell=True)
|
|
for size in ['ia32','x86-64']:
|
|
for linkkind,link in [('dfltlink',''),('dynamic','--shared')]:
|
|
build_dir = '{}-{}-{}'.format(pyver, size, linkkind)
|
|
cmd = '{} mfile.py --build-dir=build-{} host_cpu={} {} test'.format(pycmd,build_dir,size,link)
|
|
print(cmd)
|
|
subprocess.check_call(cmd, shell=True)
|