示例#1
0
def build():
    if get.buildTYPE() == "rebuild_python":
        pythonmodules.run("bootstrap.py", pyVer="3")
        pythonmodules.compile(pyVer="3")
    else:
        pythonmodules.run("bootstrap.py")
        pythonmodules.compile()
示例#2
0
def build():

    if get.buildTYPE() == "rebuild_python":
        shelltools.export("PYTHON", "/usr/bin/python3.7")
        pythonmodules.compile(pyVer="3")
    else:
        shelltools.export("PYTHON", "/usr/bin/python2.7")
        pythonmodules.compile(pyVer="2")
示例#3
0
def build():
    pythonmodules.compile()
    
    shelltools.cd("../build_python/%s" % WorkDir)
    pythonmodules.compile()
    
    shelltools.system("pwd")
    shelltools.cd("../../build_python3/%s" % WorkDir)
    pythonmodules.compile(pyVer="3")
示例#4
0
def build():
    pythonmodules.compile()
    pythonmodules.compile(pyVer="3")
    cmaketools.make()
示例#5
0
def build():
    autotools.make("-j1")

    shelltools.cd("python")
    pythonmodules.compile("--basedir=..", pyVer="2")
示例#6
0
def build():
    autotools.make()
    shelltools.cd("python")
    pythonmodules.compile(pyVer="3")
    shelltools.cd("..")
示例#7
0
def build():
    if get.buildTYPE() == "rebuild_python":
        ver = "2"
    else:
        ver = "3"
    pythonmodules.compile(pyVer=ver)
示例#8
0
def build():
    shelltools.system("sed -i '7,13d' setup.py")
    pythonmodules.compile(pyVer="3")
示例#9
0
def build():
    pythonmodules.compile(pyVer="3")
示例#10
0
def check():
    pythonmodules.compile("test", pyVer="3")
示例#11
0
def build():
    pythonmodules.compile(NUMPY_FCONFIG, pyVer="3")
示例#12
0
def setup():
    shelltools.cd("api")
    pythonmodules.compile(pyVer="3")
    shelltools.cd("../scom")
    cmaketools.configure()
示例#13
0
def build():
    pythonmodules.run("bootstrap.py", pyVer="3")
    pythonmodules.compile(pyVer="3")
示例#14
0
def build():
    pythonmodules.compile()
    autotools.make("docs")
示例#15
0
def build():
    pythonmodules.compile()
示例#16
0
def build():
    autotools.make("-C make/linux")
    pythonmodules.compile(pyVer="3")
示例#17
0
def build():
    pythonmodules.compile(NUMPY_FCONFIG)
示例#18
0
def setup():
    pythonmodules.compile()
示例#19
0
def setup():
    pythonmodules.compile()
    pythonmodules.compile(pyVer="3")
示例#20
0
def build():
    if get.buildTYPE() == "rebuild_python":
        pythonmodules.compile(pyVer="3")
    else:
        pythonmodules.compile(pyVer="2")