2015-11-30 23:47:28 +01:00
|
|
|
import os.path, subprocess, sys
|
2015-11-21 00:05:48 +01:00
|
|
|
|
|
|
|
from build.project import Project
|
|
|
|
|
|
|
|
class AutotoolsProject(Project):
|
|
|
|
def __init__(self, url, md5, installed, configure_args=[],
|
|
|
|
autogen=False,
|
|
|
|
cppflags='',
|
|
|
|
**kwargs):
|
|
|
|
Project.__init__(self, url, md5, installed, **kwargs)
|
|
|
|
self.configure_args = configure_args
|
|
|
|
self.autogen = autogen
|
|
|
|
self.cppflags = cppflags
|
|
|
|
|
|
|
|
def build(self, toolchain):
|
|
|
|
src = self.unpack(toolchain)
|
|
|
|
if self.autogen:
|
2015-11-30 23:47:28 +01:00
|
|
|
if sys.platform == 'darwin':
|
|
|
|
subprocess.check_call(['glibtoolize', '--force'], cwd=src)
|
|
|
|
else:
|
|
|
|
subprocess.check_call(['libtoolize', '--force'], cwd=src)
|
2015-11-30 23:44:57 +01:00
|
|
|
subprocess.check_call(['aclocal'], cwd=src)
|
|
|
|
subprocess.check_call(['automake', '--add-missing', '--force-missing', '--foreign'], cwd=src)
|
|
|
|
subprocess.check_call(['autoconf'], cwd=src)
|
2015-11-21 00:05:48 +01:00
|
|
|
|
|
|
|
build = self.make_build_path(toolchain)
|
|
|
|
|
|
|
|
configure = [
|
|
|
|
os.path.join(src, 'configure'),
|
|
|
|
'CC=' + toolchain.cc,
|
|
|
|
'CXX=' + toolchain.cxx,
|
|
|
|
'CFLAGS=' + toolchain.cflags,
|
|
|
|
'CXXFLAGS=' + toolchain.cxxflags,
|
|
|
|
'CPPFLAGS=' + toolchain.cppflags + ' ' + self.cppflags,
|
|
|
|
'LDFLAGS=' + toolchain.ldflags,
|
|
|
|
'LIBS=' + toolchain.libs,
|
|
|
|
'AR=' + toolchain.ar,
|
2016-10-26 10:40:19 +02:00
|
|
|
'RANLIB=' + toolchain.ranlib,
|
2015-11-21 00:05:48 +01:00
|
|
|
'STRIP=' + toolchain.strip,
|
|
|
|
'--host=' + toolchain.arch,
|
|
|
|
'--prefix=' + toolchain.install_prefix,
|
|
|
|
'--enable-silent-rules',
|
|
|
|
] + self.configure_args
|
|
|
|
|
|
|
|
subprocess.check_call(configure, cwd=build, env=toolchain.env)
|
|
|
|
subprocess.check_call(['/usr/bin/make', '--quiet', '-j12'],
|
|
|
|
cwd=build, env=toolchain.env)
|
|
|
|
subprocess.check_call(['/usr/bin/make', '--quiet', 'install'],
|
|
|
|
cwd=build, env=toolchain.env)
|