meson/environment.py

2101 lines
70 KiB
Python
Raw Normal View History

2014-08-11 05:20:17 +08:00
# Copyright 2012-2014 Jussi Pakkanen
2012-12-24 06:11:24 +08:00
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
2013-08-28 23:47:59 +08:00
import subprocess, os.path, platform, re
2013-02-25 04:30:02 +08:00
import coredata
2013-03-10 04:42:01 +08:00
from glob import glob
import tempfile
from coredata import MesonException
2012-12-24 06:11:24 +08:00
2013-02-23 19:24:41 +08:00
build_filename = 'meson.build'
class EnvironmentException(MesonException):
def __init(self, *args, **kwargs):
Exception.__init__(self, *args, **kwargs)
2013-08-25 04:32:13 +08:00
class CrossNoRunException(MesonException):
2012-12-30 09:20:53 +08:00
def __init(self, *args, **kwargs):
Exception.__init__(self, *args, **kwargs)
2012-12-24 06:11:24 +08:00
class RunResult():
def __init__(self, compiled, returncode=999, stdout='UNDEFINED', stderr='UNDEFINED'):
self.compiled = compiled
self.returncode = returncode
self.stdout = stdout
self.stderr = stderr
def is_osx():
return platform.system().lower() == 'darwin'
def is_linux():
return platform.system().lower() == 'linux'
def is_windows():
return platform.system().lower() == 'windows'
def is_debianlike():
try:
open('/etc/debian_version', 'r')
return True
except FileNotFoundError:
return False
gnulike_buildtype_args = {'plain' : [],
2014-04-17 01:51:31 +08:00
'debug' : ['-g'],
'debugoptimized' : ['-O2', '-g'],
'release' : ['-O3'],
}
msvc_buildtype_args = {'plain' : [],
'debug' : ["/MDd", "/Zi", "/Ob0", "/Od", "/RTC1"],
'debugoptimized' : ["/MD", "/Zi", "/O2", "/Ob1", "/D"],
'release' : ["/MD", "/O2", "/Ob2"]}
gnulike_buildtype_linker_args = {}
if is_osx():
gnulike_buildtype_linker_args.update({'plain' : [],
'debug' : [],
'debugoptimized' : [],
'release' : [],
})
else:
gnulike_buildtype_linker_args.update({'plain' : [],
'debug' : [],
'debugoptimized' : [],
'release' : ['-Wl,-O1'],
})
2014-04-17 02:00:25 +08:00
msvc_buildtype_linker_args = {'plain' : [],
2014-04-17 02:00:25 +08:00
'debug' : [],
'debugoptimized' : [],
'release' : []}
rust_buildtype_args = {'plain' : [],
2014-06-19 04:22:29 +08:00
'debug' : ['-g'],
'debugoptimized' : ['-g', '--opt-level', '2'],
'release' : ['--opt-level', '3']}
2014-07-19 06:33:01 +08:00
mono_buildtype_args = {'plain' : [],
'debug' : ['-debug'],
'debugoptimized': ['-debug', '-optimize+'],
'release' : ['-optimize+']}
2014-08-01 21:25:29 +08:00
def build_unix_rpath_args(build_dir, rpath_paths, install_rpath):
if len(rpath_paths) == 0 and len(install_rpath) == 0:
return []
paths = ':'.join([os.path.join(build_dir, p) for p in rpath_paths])
if len(paths) < len(install_rpath):
padding = 'X'*(len(install_rpath) - len(paths))
if len(paths) == 0:
paths = padding
else:
paths = paths + ':' + padding
return ['-Wl,-rpath,' + paths]
2012-12-24 06:11:24 +08:00
class CCompiler():
2013-08-28 23:47:59 +08:00
def __init__(self, exelist, version, is_cross, exe_wrapper=None):
if type(exelist) == type(''):
self.exelist = [exelist]
elif type(exelist) == type([]):
self.exelist = exelist
else:
raise TypeError('Unknown argument to CCompiler')
2013-08-28 23:47:59 +08:00
self.version = version
2013-01-26 07:44:56 +08:00
self.language = 'c'
self.default_suffix = 'c'
2013-04-22 05:51:25 +08:00
self.id = 'unknown'
self.is_cross = is_cross
if isinstance(exe_wrapper, str):
self.exe_wrapper = [exe_wrapper]
else:
self.exe_wrapper = exe_wrapper
2013-06-15 08:17:52 +08:00
2014-06-18 06:22:55 +08:00
def needs_static_linker(self):
return True # When compiling static libraries, so yes.
def get_always_args(self):
2013-06-15 08:17:52 +08:00
return []
def get_linker_always_args(self):
2013-11-08 00:23:51 +08:00
return []
2014-09-23 05:12:29 +08:00
def get_soname_args(self, shlib_name, path, soversion):
2013-10-05 04:04:26 +08:00
return []
def split_shlib_to_parts(self, fname):
return (None, fname)
2014-07-12 01:53:50 +08:00
# The default behaviour is this, override in
# OSX and MSVC.
def build_rpath_args(self, build_dir, rpath_paths, install_rpath):
2014-08-01 21:25:29 +08:00
return build_unix_rpath_args(build_dir, rpath_paths, install_rpath)
2013-10-05 04:04:26 +08:00
2013-04-22 05:51:25 +08:00
def get_id(self):
return self.id
2013-02-11 01:53:31 +08:00
def get_dependency_gen_args(self, outtarget, outfile):
return ['-MMD', '-MQ', outtarget, '-MF', outfile]
2013-02-11 01:53:31 +08:00
def get_depfile_suffix(self):
return 'd'
2013-01-26 07:44:56 +08:00
def get_language(self):
return self.language
2012-12-24 06:11:24 +08:00
def get_default_suffix(self):
return self.default_suffix
2012-12-24 16:33:09 +08:00
def get_exelist(self):
return self.exelist[:]
2014-08-01 21:25:29 +08:00
2013-04-20 02:43:36 +08:00
def get_linker_exelist(self):
return self.exelist[:]
2012-12-30 02:02:37 +08:00
def get_compile_only_args(self):
2012-12-24 16:45:26 +08:00
return ['-c']
2012-12-30 02:02:37 +08:00
def get_output_args(self, target):
2013-04-20 02:43:36 +08:00
return ['-o', target]
def get_linker_output_args(self, outputname):
2013-04-20 02:43:36 +08:00
return ['-o', outputname]
2012-12-30 02:02:37 +08:00
def get_debug_args(self):
2012-12-30 02:02:37 +08:00
return ['-g']
2013-02-21 06:36:28 +08:00
def get_coverage_args(self):
2013-02-21 06:36:28 +08:00
return ['--coverage']
def get_coverage_link_args(self):
2013-02-21 06:36:28 +08:00
return ['-lgcov']
2014-07-19 01:51:26 +08:00
def get_werror_args(self):
return ['-Werror']
def get_std_exe_link_args(self):
2013-01-06 00:13:38 +08:00
return []
2013-02-21 06:36:28 +08:00
def get_include_args(self, path):
return ['-I' + path]
2012-12-30 02:02:37 +08:00
def get_std_shared_lib_link_args(self):
2013-01-06 03:08:08 +08:00
return ['-shared']
def can_compile(self, filename):
2012-12-30 01:51:32 +08:00
suffix = filename.split('.')[-1]
if suffix == 'c' or suffix == 'h':
return True
return False
2013-04-07 01:55:37 +08:00
def get_pic_args(self):
2013-01-06 03:08:08 +08:00
return ['-fPIC']
def name_string(self):
return ' '.join(self.exelist)
def get_pch_use_args(self, pch_dir, header):
return ['-include', os.path.split(header)[-1]]
def get_pch_name(self, header_name):
return os.path.split(header_name)[-1] + '.' + self.get_pch_suffix()
def sanity_check(self, work_dir):
source_name = os.path.join(work_dir, 'sanitycheckc.c')
binary_name = os.path.join(work_dir, 'sanitycheckc')
ofile = open(source_name, 'w')
ofile.write('int main(int argc, char **argv) { int class=0; return class; }\n')
ofile.close()
pc = subprocess.Popen(self.exelist + [source_name, '-o', binary_name])
pc.wait()
if pc.returncode != 0:
2013-04-07 01:55:37 +08:00
raise EnvironmentException('Compiler %s can not compile programs.' % self.name_string())
if self.is_cross:
if self.exe_wrapper is None:
# Can't check if the binaries run so we have to assume they do
return
cmdlist = self.exe_wrapper + [binary_name]
else:
cmdlist = [binary_name]
pe = subprocess.Popen(cmdlist)
pe.wait()
if pe.returncode != 0:
2013-04-07 01:55:37 +08:00
raise EnvironmentException('Executables created by C compiler %s are not runnable.' % self.name_string())
2013-06-04 04:57:20 +08:00
def has_header(self, hname):
templ = '''#include<%s>
2014-03-10 01:16:49 +08:00
int someSymbolHereJustForFun;
2013-06-04 04:57:20 +08:00
'''
return self.compiles(templ % hname)
def compiles(self, code):
suflen = len(self.default_suffix)
(fd, srcname) = tempfile.mkstemp(suffix='.'+self.default_suffix)
os.close(fd)
ofile = open(srcname, 'w')
ofile.write(code)
ofile.close()
commands = self.get_exelist()
commands += self.get_compile_only_args()
commands.append(srcname)
p = subprocess.Popen(commands, cwd=os.path.split(srcname)[0], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
p.communicate()
os.remove(srcname)
try:
trial = srcname[:-suflen] + 'o'
os.remove(trial)
except FileNotFoundError:
pass
try:
os.remove(srcname[:-suflen] + 'obj')
except FileNotFoundError:
pass
return p.returncode == 0
2013-01-02 06:54:32 +08:00
2013-07-27 21:06:39 +08:00
def run(self, code):
if self.is_cross and self.exe_wrapper is None:
raise CrossNoRunException('Can not run test applications in this cross environment.')
2013-06-01 05:35:11 +08:00
(fd, srcname) = tempfile.mkstemp(suffix='.'+self.default_suffix)
os.close(fd)
ofile = open(srcname, 'w')
ofile.write(code)
ofile.close()
2013-07-27 21:06:39 +08:00
exename = srcname + '.exe' # Is guaranteed to be executable on every platform.
2013-06-01 05:35:11 +08:00
commands = self.get_exelist()
commands.append(srcname)
commands += self.get_output_args(exename)
2013-08-01 02:36:15 +08:00
p = subprocess.Popen(commands, cwd=os.path.split(srcname)[0], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
2013-06-01 05:35:11 +08:00
p.communicate()
os.remove(srcname)
if p.returncode != 0:
2013-07-27 21:06:39 +08:00
return RunResult(False)
if self.is_cross:
2013-08-24 05:32:18 +08:00
cmdlist = self.exe_wrapper + [exename]
else:
cmdlist = exename
pe = subprocess.Popen(cmdlist, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
2013-07-27 21:06:39 +08:00
(so, se) = pe.communicate()
2013-06-01 05:35:11 +08:00
os.remove(exename)
2013-07-27 21:06:39 +08:00
return RunResult(True, pe.returncode, so.decode(), se.decode())
def sizeof(self, element, prefix, env):
2013-07-27 21:06:39 +08:00
templ = '''#include<stdio.h>
%s
int main(int argc, char **argv) {
printf("%%ld\\n", (long)(sizeof(%s)));
return 0;
};
'''
varname = 'sizeof ' + element
varname = varname.replace(' ', '_')
if self.is_cross:
val = env.cross_info.get(varname)
if val is not None:
if isinstance(val, int):
return val
raise EnvironmentException('Cross variable {0} is not an integer.'.format(varname))
cross_failed = False
try:
res = self.run(templ % (prefix, element))
except CrossNoRunException:
cross_failed = True
if cross_failed:
message = '''Can not determine size of {0} because cross compiled binaries are not runnable.
Please define the corresponding variable {1} in your cross compilation definition file.'''.format(element, varname)
raise EnvironmentException(message)
2013-07-27 21:06:39 +08:00
if not res.compiled:
raise EnvironmentException('Could not compile sizeof test.')
if res.returncode != 0:
2013-06-01 05:35:11 +08:00
raise EnvironmentException('Could not run sizeof test binary.')
2013-07-27 21:06:39 +08:00
return int(res.stdout)
2013-06-01 05:35:11 +08:00
2013-08-25 04:40:11 +08:00
def alignment(self, typename, env):
2013-07-31 05:41:26 +08:00
templ = '''#include<stdio.h>
2013-08-25 19:44:44 +08:00
#include<stddef.h>
2013-07-31 05:41:26 +08:00
2013-08-25 19:44:44 +08:00
struct tmp {
char c;
%s target;
};
2013-07-31 05:41:26 +08:00
int main(int argc, char **argv) {
2013-08-25 19:44:44 +08:00
printf("%%d", (int)offsetof(struct tmp, target));
2013-07-31 05:41:26 +08:00
return 0;
}
'''
2013-08-25 04:40:11 +08:00
varname = 'alignment ' + typename
varname = varname.replace(' ', '_')
if self.is_cross:
val = env.cross_info.get(varname)
if val is not None:
if isinstance(val, int):
return val
raise EnvironmentException('Cross variable {0} is not an integer.'.format(varname))
cross_failed = False
try:
res = self.run(templ % typename)
except CrossNoRunException:
cross_failed = True
if cross_failed:
message = '''Can not determine alignment of {0} because cross compiled binaries are not runnable.
Please define the corresponding variable {1} in your cross compilation definition file.'''.format(typename, varname)
raise EnvironmentException(message)
2013-07-31 05:41:26 +08:00
if not res.compiled:
raise EnvironmentException('Could not compile alignment test.')
if res.returncode != 0:
raise EnvironmentException('Could not run alignment test binary.')
2013-08-25 19:44:44 +08:00
align = int(res.stdout)
if align == 0:
raise EnvironmentException('Could not determine alignment of %s. Sorry. You might want to file a bug.' % typename)
return align
2013-07-31 05:41:26 +08:00
2013-08-25 04:32:13 +08:00
def has_function(self, funcname, prefix, env):
# This fails (returns true) if funcname is a ptr or a variable.
# The correct check is a lot more difficult.
# Fix this to do that eventually.
templ = '''%s
int main(int argc, char **argv) {
void *ptr = (void*)(%s);
return 0;
};
'''
2013-08-25 04:32:13 +08:00
varname = 'has function ' + funcname
varname = varname.replace(' ', '_')
if self.is_cross:
val = env.cross_info.get(varname)
if val is not None:
if isinstance(val, bool):
return val
raise EnvironmentException('Cross variable {0} is not an boolean.'.format(varname))
return self.compiles(templ % (prefix, funcname))
2013-07-31 03:06:42 +08:00
def has_member(self, typename, membername, prefix):
templ = '''%s
2013-07-31 03:14:31 +08:00
void bar() {
2013-07-31 03:06:42 +08:00
%s foo;
foo.%s;
};
'''
return self.compiles(templ % (prefix, typename, membername))
2013-06-03 03:31:10 +08:00
class CPPCompiler(CCompiler):
2013-08-28 23:47:59 +08:00
def __init__(self, exelist, version, is_cross, exe_wrap):
CCompiler.__init__(self, exelist, version, is_cross, exe_wrap)
2013-06-03 03:31:10 +08:00
self.language = 'cpp'
self.default_suffix = 'cpp'
2013-01-02 06:54:32 +08:00
def can_compile(self, filename):
suffix = filename.split('.')[-1]
2013-06-03 03:31:10 +08:00
if suffix in cpp_suffixes:
2013-01-02 06:54:32 +08:00
return True
return False
def sanity_check(self, work_dir):
2013-06-03 03:31:10 +08:00
source_name = os.path.join(work_dir, 'sanitycheckcpp.cc')
binary_name = os.path.join(work_dir, 'sanitycheckcpp')
2013-01-02 06:54:32 +08:00
ofile = open(source_name, 'w')
ofile.write('class breakCCompiler;int main(int argc, char **argv) { return 0; }\n')
ofile.close()
pc = subprocess.Popen(self.exelist + [source_name, '-o', binary_name])
pc.wait()
if pc.returncode != 0:
2013-04-07 01:55:37 +08:00
raise EnvironmentException('Compiler %s can not compile programs.' % self.name_string())
2013-08-25 02:38:43 +08:00
if self.is_cross:
if self.exe_wrapper is None:
# Can't check if the binaries run so we have to assume they do
return
cmdlist = self.exe_wrapper + [binary_name]
else:
cmdlist = [binary_name]
pe = subprocess.Popen(cmdlist)
2013-01-02 06:54:32 +08:00
pe.wait()
if pe.returncode != 0:
2013-04-07 01:55:37 +08:00
raise EnvironmentException('Executables created by C++ compiler %s are not runnable.' % self.name_string())
class ObjCCompiler(CCompiler):
2013-08-28 23:47:59 +08:00
def __init__(self, exelist, version, is_cross, exe_wrap):
CCompiler.__init__(self, exelist, version, is_cross, exe_wrap)
2013-04-07 04:09:30 +08:00
self.language = 'objc'
self.default_suffix = 'm'
2014-04-03 03:51:52 +08:00
2013-04-07 01:55:37 +08:00
def can_compile(self, filename):
suffix = filename.split('.')[-1]
if suffix == 'm' or suffix == 'h':
return True
return False
2014-07-08 22:42:58 +08:00
def sanity_check(self, work_dir):
source_name = os.path.join(work_dir, 'sanitycheckobjc.m')
binary_name = os.path.join(work_dir, 'sanitycheckobjc')
ofile = open(source_name, 'w')
ofile.write('#import<stdio.h>\nint main(int argc, char **argv) { return 0; }\n')
ofile.close()
pc = subprocess.Popen(self.exelist + [source_name, '-o', binary_name])
pc.wait()
if pc.returncode != 0:
raise EnvironmentException('ObjC compiler %s can not compile programs.' % self.name_string())
pe = subprocess.Popen(binary_name)
pe.wait()
if pe.returncode != 0:
raise EnvironmentException('Executables created by ObjC compiler %s are not runnable.' % self.name_string())
2013-06-03 03:31:10 +08:00
class ObjCPPCompiler(CPPCompiler):
2013-08-28 23:47:59 +08:00
def __init__(self, exelist, version, is_cross, exe_wrap):
CPPCompiler.__init__(self, exelist, version, is_cross, exe_wrap)
2013-06-03 03:31:10 +08:00
self.language = 'objcpp'
self.default_suffix = 'mm'
2013-04-07 03:03:16 +08:00
def can_compile(self, filename):
suffix = filename.split('.')[-1]
if suffix == 'mm' or suffix == 'h':
return True
return False
2013-04-07 01:55:37 +08:00
def sanity_check(self, work_dir):
2013-06-03 03:31:10 +08:00
source_name = os.path.join(work_dir, 'sanitycheckobjcpp.mm')
binary_name = os.path.join(work_dir, 'sanitycheckobjcpp')
2013-04-07 01:55:37 +08:00
ofile = open(source_name, 'w')
2013-04-07 03:03:16 +08:00
ofile.write('#import<stdio.h>\nclass MyClass;int main(int argc, char **argv) { return 0; }\n')
2013-04-07 01:55:37 +08:00
ofile.close()
pc = subprocess.Popen(self.exelist + [source_name, '-o', binary_name])
pc.wait()
if pc.returncode != 0:
2013-04-07 03:03:16 +08:00
raise EnvironmentException('ObjC++ compiler %s can not compile programs.' % self.name_string())
2013-04-07 01:55:37 +08:00
pe = subprocess.Popen(binary_name)
pe.wait()
if pe.returncode != 0:
2013-04-07 03:03:16 +08:00
raise EnvironmentException('Executables created by ObjC++ compiler %s are not runnable.' % self.name_string())
2012-12-24 16:33:09 +08:00
2014-07-19 02:49:14 +08:00
class MonoCompiler():
def __init__(self, exelist, version):
if type(exelist) == type(''):
self.exelist = [exelist]
elif type(exelist) == type([]):
self.exelist = exelist
else:
raise TypeError('Unknown argument to Mono compiler')
self.version = version
self.language = 'cs'
self.default_suffix = 'cs'
self.id = 'mono'
self.monorunner = 'mono'
def get_always_args(self):
return []
def get_output_args(self, fname):
return ['-out:' + fname]
def get_linker_always_args(self):
return []
2014-07-19 06:14:21 +08:00
def get_link_args(self, fname):
return ['-r:' + fname]
2014-09-23 05:12:29 +08:00
def get_soname_args(self, shlib_name, path, soversion):
2014-07-19 02:49:14 +08:00
return []
def get_werror_args(self):
return ['-warnaserror']
def split_shlib_to_parts(self, fname):
return (None, fname)
def build_rpath_args(self, build_dir, rpath_paths, install_rpath):
return []
def get_id(self):
return self.id
def get_dependency_gen_args(self, outtarget, outfile):
return []
def get_language(self):
return self.language
def get_default_suffix(self):
return self.default_suffix
def get_exelist(self):
return self.exelist[:]
def get_linker_exelist(self):
return self.exelist[:]
def get_compile_only_args(self):
return []
def get_linker_output_args(self, outputname):
return []
def get_debug_args(self):
return ['-g']
def get_coverage_args(self):
return []
def get_coverage_link_args(self):
return []
def get_std_exe_link_args(self):
return []
def get_include_args(self, path):
return []
2014-07-19 02:49:14 +08:00
def get_std_shared_lib_link_args(self):
return []
def can_compile(self, filename):
suffix = filename.split('.')[-1]
if suffix == 'cs':
return True
return False
def get_pic_args(self):
return []
def name_string(self):
return ' '.join(self.exelist)
def get_pch_use_args(self, pch_dir, header):
return []
def get_pch_name(self, header_name):
return ''
def sanity_check(self, work_dir):
src = 'sanity.cs'
obj = 'sanity.exe'
source_name = os.path.join(work_dir, src)
ofile = open(source_name, 'w')
ofile.write('''public class Sanity {
static public void Main () {
}
}
''')
ofile.close()
pc = subprocess.Popen(self.exelist + [src], cwd=work_dir)
pc.wait()
if pc.returncode != 0:
raise EnvironmentException('Mono compiler %s can not compile programs.' % self.name_string())
cmdlist = [self.monorunner, obj]
pe = subprocess.Popen(cmdlist, cwd=work_dir)
pe.wait()
if pe.returncode != 0:
raise EnvironmentException('Executables created by Mono compiler %s are not runnable.' % self.name_string())
def needs_static_linker(self):
return False
def has_header(self, hname):
raise EnvironmentException('Mono does not support header checks.')
def compiles(self, code):
raise EnvironmentException('Mono does not support compile checks.')
def run(self, code):
raise EnvironmentException('Mono does not support run checks.')
def sizeof(self, element, prefix, env):
raise EnvironmentException('Mono does not support sizeof checks.')
def alignment(self, typename, env):
raise EnvironmentException('Mono does not support alignment checks.')
def has_function(self, funcname, prefix, env):
raise EnvironmentException('Mono does not support function checks.')
2014-07-19 06:33:01 +08:00
def get_buildtype_args(self, buildtype):
return mono_buildtype_args[buildtype]
class JavaCompiler():
2014-03-11 04:49:29 +08:00
def __init__(self, exelist, version):
if type(exelist) == type(''):
self.exelist = [exelist]
elif type(exelist) == type([]):
self.exelist = exelist
else:
raise TypeError('Unknown argument to JavaCompiler')
self.version = version
self.language = 'java'
self.default_suffix = 'java'
self.id = 'unknown'
self.javarunner = 'java'
def get_always_args(self):
return []
def get_linker_always_args(self):
return []
2014-09-23 05:12:29 +08:00
def get_soname_args(self, shlib_name, path, soversion):
return []
2014-07-19 02:49:14 +08:00
def get_werror_args(self):
return ['-Werror']
def split_shlib_to_parts(self, fname):
return (None, fname)
2014-07-12 01:53:50 +08:00
def build_rpath_args(self, build_dir, rpath_paths, install_rpath):
return []
def get_id(self):
return self.id
def get_dependency_gen_args(self, outtarget, outfile):
return []
def get_language(self):
return self.language
def get_default_suffix(self):
return self.default_suffix
def get_exelist(self):
return self.exelist[:]
def get_linker_exelist(self):
return self.exelist[:]
def get_compile_only_args(self):
return []
def get_output_args(self, subdir):
2014-03-12 04:19:05 +08:00
if subdir == '':
subdir = './'
return ['-d', subdir, '-s', subdir]
def get_linker_output_args(self, outputname):
return []
def get_debug_args(self):
return ['-g']
def get_coverage_args(self):
return []
def get_coverage_link_args(self):
return []
def get_std_exe_link_args(self):
return []
def get_include_args(self, path):
return []
def get_std_shared_lib_link_args(self):
return []
def can_compile(self, filename):
suffix = filename.split('.')[-1]
if suffix == 'java':
return True
return False
def get_pic_args(self):
return []
def name_string(self):
return ' '.join(self.exelist)
def get_pch_use_args(self, pch_dir, header):
return []
def get_pch_name(self, header_name):
return ''
def sanity_check(self, work_dir):
src = 'SanityCheck.java'
2014-03-11 04:49:29 +08:00
obj = 'SanityCheck'
source_name = os.path.join(work_dir, src)
ofile = open(source_name, 'w')
ofile.write('''class SanityCheck {
public static void main(String[] args) {
2014-03-11 04:49:29 +08:00
int i;
}
}
''')
ofile.close()
pc = subprocess.Popen(self.exelist + [src], cwd=work_dir)
pc.wait()
if pc.returncode != 0:
raise EnvironmentException('Java compiler %s can not compile programs.' % self.name_string())
cmdlist = [self.javarunner, obj]
pe = subprocess.Popen(cmdlist, cwd=work_dir)
pe.wait()
if pe.returncode != 0:
raise EnvironmentException('Executables created by Java compiler %s are not runnable.' % self.name_string())
2014-06-18 06:22:55 +08:00
def needs_static_linker(self):
return False
def has_header(self, hname):
raise EnvironmentException('Java does not support header checks.')
def compiles(self, code):
raise EnvironmentException('Java does not support compile checks.')
def run(self, code):
raise EnvironmentException('Java does not support run checks.')
def sizeof(self, element, prefix, env):
raise EnvironmentException('Java does not support sizeof checks.')
def alignment(self, typename, env):
raise EnvironmentException('Java does not support alignment checks.')
def has_function(self, funcname, prefix, env):
raise EnvironmentException('Java does not support function checks.')
2014-05-10 06:14:52 +08:00
class ValaCompiler():
def __init__(self, exelist, version):
if isinstance(exelist, str):
self.exelist = [exelist]
elif type(exelist) == type([]):
self.exelist = exelist
else:
2014-06-18 06:22:55 +08:00
raise TypeError('Unknown argument to Vala compiler')
2014-05-10 06:14:52 +08:00
self.version = version
self.id = 'unknown'
self.language = 'vala'
2014-06-18 06:22:55 +08:00
def needs_static_linker(self):
return False # Because compiles into C.
2014-05-10 06:14:52 +08:00
def get_exelist(self):
return self.exelist
2014-07-19 01:51:26 +08:00
def get_werror_args(self):
return ['--fatal-warnings']
2014-05-10 06:14:52 +08:00
def get_language(self):
return self.language
def sanity_check(self, work_dir):
src = 'valatest.vala'
obj = 'valatest.c'
source_name = os.path.join(work_dir, src)
ofile = open(source_name, 'w')
ofile.write('''class SanityCheck : Object {
}
''')
ofile.close()
pc = subprocess.Popen(self.exelist + ['-C', '-o', obj, src], cwd=work_dir)
pc.wait()
if pc.returncode != 0:
raise EnvironmentException('Vala compiler %s can not compile programs.' % self.name_string())
2014-05-10 07:26:54 +08:00
def can_compile(self, fname):
return fname.endswith('.vala')
2014-06-18 06:22:55 +08:00
class RustCompiler():
def __init__(self, exelist, version):
if isinstance(exelist, str):
self.exelist = [exelist]
elif type(exelist) == type([]):
self.exelist = exelist
else:
raise TypeError('Unknown argument to Rust compiler')
self.version = version
self.id = 'unknown'
self.language = 'rust'
def needs_static_linker(self):
return False
def get_exelist(self):
return self.exelist
def get_id(self):
return self.id
def get_language(self):
return self.language
def sanity_check(self, work_dir):
source_name = os.path.join(work_dir, 'sanity.rs')
output_name = os.path.join(work_dir, 'rusttest')
ofile = open(source_name, 'w')
ofile.write('''fn main() {
}
''')
ofile.close()
pc = subprocess.Popen(self.exelist + ['-o', output_name, source_name], cwd=work_dir)
pc.wait()
if pc.returncode != 0:
raise EnvironmentException('Rust compiler %s can not compile programs.' % self.name_string())
if subprocess.call(output_name) != 0:
raise EnvironmentException('Executables created by Rust compiler %s are not runnable.' % self.name_string())
def can_compile(self, fname):
return fname.endswith('.rs')
def get_dependency_gen_args(self, outfile):
2014-06-18 06:22:55 +08:00
return ['--dep-info', outfile]
def get_buildtype_args(self, buildtype):
return rust_buildtype_args[buildtype]
2014-06-19 04:22:29 +08:00
class VisualStudioCCompiler(CCompiler):
std_warn_args = ['/W3']
std_opt_args= ['/O2']
2014-09-26 23:49:15 +08:00
vs2010_always_args = ['/nologo', '/showIncludes']
vs2013_always_args = ['/nologo', '/showIncludes', '/FS']
2014-06-18 06:22:55 +08:00
2013-08-28 23:47:59 +08:00
def __init__(self, exelist, version, is_cross, exe_wrap):
CCompiler.__init__(self, exelist, version, is_cross, exe_wrap)
2013-04-22 05:51:25 +08:00
self.id = 'msvc'
2014-09-26 23:49:15 +08:00
if int(version.split('.')[0]) > 17:
self.always_args = VisualStudioCCompiler.vs2013_always_args
else:
self.always_args = VisualStudioCCompiler.vs2010_always_args
def get_always_args(self):
2014-09-26 23:49:15 +08:00
return self.always_args
2013-06-15 08:17:52 +08:00
def get_std_warn_args(self):
2014-09-26 23:49:15 +08:00
return self.std_warn_args
def get_buildtype_args(self, buildtype):
return msvc_buildtype_args[buildtype]
def get_buildtype_linker_args(self, buildtype):
return msvc_buildtype_linker_args[buildtype]
2013-10-07 00:54:15 +08:00
def get_pch_suffix(self):
return 'pch'
2013-10-07 00:54:15 +08:00
def get_pch_name(self, header):
chopped = os.path.split(header)[-1].split('.')[:-1]
chopped.append(self.get_pch_suffix())
pchname = '.'.join(chopped)
return pchname
def get_pch_use_args(self, pch_dir, header):
base = os.path.split(header)[-1]
pchname = self.get_pch_name(header)
return ['/FI' + base, '/Yu' + base, '/Fp' + os.path.join(pch_dir, pchname)]
def get_debug_args(self):
return ['/D_DEBUG', '/Zi', '/MDd', '/Ob0', '/RTC1']
def get_compile_only_args(self):
return ['/c']
def get_output_args(self, target):
2013-06-03 22:56:31 +08:00
if target.endswith('.exe'):
return ['/Fe' + target]
2013-04-20 02:43:36 +08:00
return ['/Fo' + target]
def get_dependency_gen_args(self, outtarget, outfile):
2013-04-20 02:43:36 +08:00
return []
def get_linker_exelist(self):
return ['link'] # FIXME, should have same path as compiler.
def get_linker_always_args(self):
2013-11-08 00:23:51 +08:00
return ['/nologo']
def get_linker_output_args(self, outputname):
2013-04-20 02:43:36 +08:00
return ['/OUT:' + outputname]
2013-04-20 05:30:44 +08:00
def get_pic_args(self):
2013-06-15 00:25:46 +08:00
return ['/LD']
2013-04-20 05:30:44 +08:00
def get_std_shared_lib_link_args(self):
2013-06-15 00:25:46 +08:00
return ['/DLL']
2013-04-20 05:30:44 +08:00
def gen_pch_args(self, header, source, pchname):
objname = os.path.splitext(pchname)[0] + '.obj'
return (objname, ['/Yc' + header, '/Fp' + pchname, '/Fo' + objname ])
2013-04-20 02:10:41 +08:00
def sanity_check(self, work_dir):
source_name = 'sanitycheckc.c'
binary_name = 'sanitycheckc'
ofile = open(os.path.join(work_dir, source_name), 'w')
2013-04-20 02:10:41 +08:00
ofile.write('int main(int argc, char **argv) { return 0; }\n')
ofile.close()
pc = subprocess.Popen(self.exelist + [source_name, '/Fe' + binary_name],
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL,
cwd=work_dir)
2013-04-20 02:10:41 +08:00
pc.wait()
if pc.returncode != 0:
raise EnvironmentException('Compiler %s can not compile programs.' % self.name_string())
pe = subprocess.Popen(os.path.join(work_dir, binary_name))
2013-04-20 02:10:41 +08:00
pe.wait()
if pe.returncode != 0:
raise EnvironmentException('Executables created by C++ compiler %s are not runnable.' % self.name_string())
2014-09-23 05:12:29 +08:00
def build_rpath_args(self, build_dir, rpath_paths, install_rpath):
return []
2013-06-03 03:31:10 +08:00
class VisualStudioCPPCompiler(VisualStudioCCompiler):
2013-08-28 23:47:59 +08:00
def __init__(self, exelist, version, is_cross, exe_wrap):
VisualStudioCCompiler.__init__(self, exelist, version, is_cross, exe_wrap)
2013-06-03 03:31:10 +08:00
self.language = 'cpp'
self.default_suffix = 'cpp'
2013-04-20 03:11:20 +08:00
def can_compile(self, filename):
suffix = filename.split('.')[-1]
2013-06-03 03:31:10 +08:00
if suffix in cpp_suffixes:
2013-04-20 03:11:20 +08:00
return True
return False
def sanity_check(self, work_dir):
source_name = 'sanitycheckcpp.cpp'
binary_name = 'sanitycheckcpp'
ofile = open(os.path.join(work_dir, source_name), 'w')
2013-04-20 03:11:20 +08:00
ofile.write('class BreakPlainC;int main(int argc, char **argv) { return 0; }\n')
ofile.close()
pc = subprocess.Popen(self.exelist + [source_name, '/Fe' + binary_name],
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL,
cwd=work_dir)
2013-04-20 03:11:20 +08:00
pc.wait()
if pc.returncode != 0:
raise EnvironmentException('Compiler %s can not compile programs.' % self.name_string())
pe = subprocess.Popen(os.path.join(work_dir, binary_name))
2013-04-20 03:11:20 +08:00
pe.wait()
if pe.returncode != 0:
raise EnvironmentException('Executables created by C++ compiler %s are not runnable.' % self.name_string())
2013-10-06 05:22:44 +08:00
GCC_STANDARD = 0
GCC_OSX = 1
GCC_MINGW = 2
2014-07-18 23:08:22 +08:00
def get_gcc_soname_args(gcc_type, shlib_name, path, soversion):
if soversion is None:
sostr = ''
else:
sostr = '.' + soversion
2013-10-06 05:22:44 +08:00
if gcc_type == GCC_STANDARD:
2014-07-18 23:08:22 +08:00
return ['-Wl,-soname,lib%s.so%s' % (shlib_name, sostr)]
2013-10-06 05:22:44 +08:00
elif gcc_type == GCC_OSX:
return ['-install_name', os.path.join(path, 'lib' + shlib_name + '.dylib')]
else:
raise RuntimeError('Not impelented yet.')
2012-12-24 06:11:24 +08:00
class GnuCCompiler(CCompiler):
std_warn_args = ['-Wall', '-Winvalid-pch']
2013-01-02 06:54:32 +08:00
2013-10-06 05:22:44 +08:00
def __init__(self, exelist, version, gcc_type, is_cross, exe_wrapper=None):
2013-08-28 23:47:59 +08:00
CCompiler.__init__(self, exelist, version, is_cross, exe_wrapper)
2013-04-22 05:51:25 +08:00
self.id = 'gcc'
2013-10-06 05:22:44 +08:00
self.gcc_type = gcc_type
2012-12-24 06:11:24 +08:00
def get_always_args(self):
2013-10-15 04:09:22 +08:00
return ['-pipe']
def get_std_warn_args(self):
return GnuCCompiler.std_warn_args
2012-12-24 06:11:24 +08:00
def get_buildtype_args(self, buildtype):
return gnulike_buildtype_args[buildtype]
2012-12-24 16:45:26 +08:00
def get_buildtype_linker_args(self, buildtype):
return gnulike_buildtype_linker_args[buildtype]
2014-04-17 02:00:25 +08:00
2013-01-14 02:50:16 +08:00
def get_pch_suffix(self):
return 'gch'
2013-10-05 04:04:26 +08:00
def split_shlib_to_parts(self, fname):
return (os.path.split(fname)[0], fname)
2014-07-18 23:08:22 +08:00
def get_soname_args(self, shlib_name, path, soversion):
return get_gcc_soname_args(self.gcc_type, shlib_name, path, soversion)
2013-10-05 04:04:26 +08:00
def can_compile(self, filename):
return super().can_compile(filename) or filename.split('.')[-1] == 's' # Gcc can do asm, too.
2013-04-07 01:55:37 +08:00
class GnuObjCCompiler(ObjCCompiler):
std_warn_args = ['-Wall', '-Winvalid-pch']
2014-04-03 03:51:52 +08:00
2013-08-28 23:47:59 +08:00
def __init__(self, exelist, version, is_cross, exe_wrapper=None):
ObjCCompiler.__init__(self, exelist, version, is_cross, exe_wrapper)
2013-04-22 05:51:25 +08:00
self.id = 'gcc'
2013-04-07 01:55:37 +08:00
def get_std_warn_args(self):
return GnuObjCCompiler.std_warn_args
2013-04-07 01:55:37 +08:00
def get_buildtype_args(self, buildtype):
return gnulike_buildtype_args[buildtype]
2013-04-07 01:55:37 +08:00
def get_buildtype_linker_args(self, buildtype):
return gnulike_buildtype_linker_args[buildtype]
2014-04-17 02:00:25 +08:00
2013-04-07 01:55:37 +08:00
def get_pch_suffix(self):
return 'gch'
2014-07-18 23:08:22 +08:00
def get_soname_args(self, shlib_name, path, soversion):
return get_gcc_soname_args(self.gcc_type, shlib_name, path, soversion)
2013-10-06 05:22:44 +08:00
2013-06-03 03:31:10 +08:00
class GnuObjCPPCompiler(ObjCPPCompiler):
std_warn_args = ['-Wall', '-Winvalid-pch']
std_opt_args = ['-O2']
2013-04-07 03:03:16 +08:00
2013-08-28 23:47:59 +08:00
def __init__(self, exelist, version, is_cross, exe_wrapper=None):
ObjCCompiler.__init__(self, exelist, version, is_cross, exe_wrapper)
2013-04-22 05:51:25 +08:00
self.id = 'gcc'
def get_std_warn_args(self):
return GnuObjCPPCompiler.std_warn_args
2013-04-07 03:03:16 +08:00
def get_buildtype_args(self, buildtype):
return gnulike_buildtype_args[buildtype]
2013-04-07 03:03:16 +08:00
def get_buildtype_linker_args(self, buildtype):
return gnulike_buildtype_linker_args[buildtype]
2014-04-17 02:00:25 +08:00
2013-04-07 03:03:16 +08:00
def get_pch_suffix(self):
return 'gch'
2014-07-18 23:08:22 +08:00
def get_soname_args(self, shlib_name, path, soversion):
return get_gcc_soname_args(self.gcc_type, shlib_name, path, soversion)
2013-10-06 05:22:44 +08:00
2014-04-03 03:51:52 +08:00
class ClangObjCCompiler(GnuObjCCompiler):
def __init__(self, exelist, version, is_cross, exe_wrapper=None):
super().__init__(exelist, version, is_cross, exe_wrapper)
self.id = 'clang'
class ClangObjCPPCompiler(GnuObjCPPCompiler):
def __init__(self, exelist, version, is_cross, exe_wrapper=None):
super().__init__(exelist, version, is_cross, exe_wrapper)
self.id = 'clang'
2013-02-10 21:05:35 +08:00
class ClangCCompiler(CCompiler):
std_warn_args = ['-Wall', '-Winvalid-pch']
2013-02-10 21:05:35 +08:00
2013-08-28 23:47:59 +08:00
def __init__(self, exelist, version, is_cross, exe_wrapper=None):
CCompiler.__init__(self, exelist, version, is_cross, exe_wrapper)
2013-04-22 05:51:25 +08:00
self.id = 'clang'
2013-02-10 21:05:35 +08:00
def get_std_warn_args(self):
return ClangCCompiler.std_warn_args
2013-02-10 21:05:35 +08:00
def get_buildtype_args(self, buildtype):
return gnulike_buildtype_args[buildtype]
2013-02-10 21:05:35 +08:00
def get_buildtype_linker_args(self, buildtype):
return gnulike_buildtype_linker_args[buildtype]
2014-04-17 02:00:25 +08:00
2013-02-10 21:05:35 +08:00
def get_pch_suffix(self):
return 'pch'
def can_compile(self, filename):
return super().can_compile(filename) or filename.split('.')[-1] == 's' # Clang can do asm, too.
2013-06-03 03:31:10 +08:00
class GnuCPPCompiler(CPPCompiler):
std_warn_args = ['-Wall', '-Winvalid-pch']
# may need to separate the latter to extra_debug_args or something
std_debug_args = ['-g']
2013-08-26 02:24:49 +08:00
def __init__(self, exelist, version, gcc_type, is_cross, exe_wrap):
2013-08-28 23:47:59 +08:00
CPPCompiler.__init__(self, exelist, version, is_cross, exe_wrap)
2013-04-22 05:51:25 +08:00
self.id = 'gcc'
self.gcc_type = gcc_type
2013-01-02 06:54:32 +08:00
def get_always_args(self):
2013-10-15 04:09:22 +08:00
return ['-pipe']
def get_debug_args(self):
return GnuCPPCompiler.std_debug_args
2013-08-26 02:24:49 +08:00
def get_std_warn_args(self):
return GnuCPPCompiler.std_warn_args
2013-01-02 06:54:32 +08:00
def get_buildtype_args(self, buildtype):
return gnulike_buildtype_args[buildtype]
2013-01-02 06:54:32 +08:00
def get_buildtype_linker_args(self, buildtype):
return gnulike_buildtype_linker_args[buildtype]
2014-04-17 02:00:25 +08:00
2013-01-14 02:50:16 +08:00
def get_pch_suffix(self):
return 'gch'
2014-07-18 23:08:22 +08:00
def get_soname_args(self, shlib_name, path, soversion):
return get_gcc_soname_args(self.gcc_type, shlib_name, path, soversion)
2013-10-06 05:22:44 +08:00
2013-06-03 03:31:10 +08:00
class ClangCPPCompiler(CPPCompiler):
std_warn_args = ['-Wall', '-Winvalid-pch']
2013-02-21 06:36:28 +08:00
2013-08-28 23:47:59 +08:00
def __init__(self, exelist, version, is_cross, exe_wrapper=None):
CPPCompiler.__init__(self, exelist, version, is_cross, exe_wrapper)
2013-04-22 05:51:25 +08:00
self.id = 'clang'
2013-02-10 21:05:35 +08:00
def get_std_warn_args(self):
return ClangCPPCompiler.std_warn_args
2013-02-10 21:05:35 +08:00
def get_buildtype_args(self, buildtype):
return gnulike_buildtype_args[buildtype]
2013-02-10 21:05:35 +08:00
def get_buildtype_linker_args(self, buildtype):
return gnulike_buildtype_linker_args[buildtype]
2014-04-17 02:00:25 +08:00
2013-02-10 21:05:35 +08:00
def get_pch_suffix(self):
return 'pch'
2014-08-13 23:17:53 +08:00
class FortranCompiler():
2014-08-01 21:25:29 +08:00
std_warn_args = ['-Wall']
2014-08-13 23:17:53 +08:00
def __init__(self, exelist, version,is_cross, exe_wrapper=None):
2014-08-01 21:25:29 +08:00
super().__init__()
self.exelist = exelist
self.version = version
self.is_cross = is_cross
self.exe_wrapper = exe_wrapper
self.language = 'fortran'
def get_id(self):
return self.id
def get_exelist(self):
return self.exelist
def get_language(self):
return self.language
def needs_static_linker(self):
return True
def sanity_check(self, work_dir):
source_name = os.path.join(work_dir, 'sanitycheckf.f90')
2014-08-01 21:25:29 +08:00
binary_name = os.path.join(work_dir, 'sanitycheckf')
ofile = open(source_name, 'w')
ofile.write('''program prog
print *, "Fortran compilation is working."
end program prog
''')
ofile.close()
pc = subprocess.Popen(self.exelist + [source_name, '-o', binary_name])
pc.wait()
if pc.returncode != 0:
raise EnvironmentException('Compiler %s can not compile programs.' % self.name_string())
if self.is_cross:
if self.exe_wrapper is None:
# Can't check if the binaries run so we have to assume they do
return
cmdlist = self.exe_wrapper + [binary_name]
else:
cmdlist = [binary_name]
pe = subprocess.Popen(cmdlist, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
2014-08-01 21:25:29 +08:00
pe.wait()
if pe.returncode != 0:
raise EnvironmentException('Executables created by Fortran compiler %s are not runnable.' % self.name_string())
def get_always_args(self):
return ['-pipe']
def get_linker_always_args(self):
return []
def get_std_warn_args(self):
return FortranCompiler.std_warn_args
2014-08-01 21:25:29 +08:00
def get_buildtype_args(self, buildtype):
return gnulike_buildtype_args[buildtype]
def get_buildtype_linker_args(self, buildtype):
return gnulike_buildtype_linker_args[buildtype]
def split_shlib_to_parts(self, fname):
return (os.path.split(fname)[0], fname)
def get_soname_args(self, shlib_name, path, soversion):
return get_gcc_soname_args(self.gcc_type, shlib_name, path, soversion)
def get_dependency_gen_args(self, outtarget, outfile):
# Disabled until this is fixed:
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62162
#return ['-cpp', '-MMD', '-MQ', outtarget]
return []
2014-08-01 21:25:29 +08:00
def get_output_args(self, target):
return ['-o', target]
def get_compile_only_args(self):
return ['-c']
def get_linker_exelist(self):
return self.exelist[:]
def get_linker_output_args(self, outputname):
return ['-o', outputname]
def can_compile(self, src):
2014-08-01 21:33:30 +08:00
suffix = os.path.splitext(src)[1].lower()
2014-08-04 18:15:33 +08:00
if suffix == '.f' or suffix == '.f95' or suffix == '.f90':
2014-08-01 21:25:29 +08:00
return True
return False
def get_include_args(self, path):
return ['-I' + path]
2014-08-01 21:25:29 +08:00
def get_module_outdir_args(self, path):
return ['-J' + path]
2014-08-01 21:25:29 +08:00
def get_depfile_suffix(self):
return 'd'
def get_std_exe_link_args(self):
return []
def build_rpath_args(self, build_dir, rpath_paths, install_rpath):
return build_unix_rpath_args(build_dir, rpath_paths, install_rpath)
def module_name_to_filename(self, module_name):
return module_name.lower() + '.mod'
2014-08-01 21:25:29 +08:00
2014-08-13 23:17:53 +08:00
class GnuFortranCompiler(FortranCompiler):
def __init__(self, exelist, version, gcc_type, is_cross, exe_wrapper=None):
2014-08-13 23:17:53 +08:00
super().__init__(exelist, version, is_cross, exe_wrapper=None)
self.gcc_type = gcc_type
self.id = 'gcc'
2014-08-13 23:17:53 +08:00
class G95FortranCompiler(FortranCompiler):
def __init__(self, exelist, version, is_cross, exe_wrapper=None):
super().__init__(exelist, version, is_cross, exe_wrapper=None)
self.id = 'g95'
def get_module_outdir_args(self, path):
return ['-fmod='+path]
2014-08-13 23:17:53 +08:00
class SunFortranCompiler(FortranCompiler):
def __init__(self, exelist, version, is_cross, exe_wrapper=None):
super().__init__(exelist, version, is_cross, exe_wrapper=None)
self.id = 'sun'
def get_dependency_gen_args(self, outtarget, outfile):
return ['-fpp']
def get_always_args(self):
return []
def get_std_warn_args(self):
return []
def get_module_outdir_args(self, path):
return ['-moddir='+path]
class IntelFortranCompiler(FortranCompiler):
std_warn_args = ['-warn', 'all']
def __init__(self, exelist, version, is_cross, exe_wrapper=None):
super().__init__(exelist, version, is_cross, exe_wrapper=None)
self.id = 'intel'
def get_module_outdir_args(self, path):
return ['-module', path]
def get_always_args(self):
return []
def can_compile(self, src):
suffix = os.path.splitext(src)[1].lower()
if suffix == '.f' or suffix == '.f90':
return True
return False
def get_std_warn_args(self):
return IntelFortranCompiler.std_warn_args
class PathScaleFortranCompiler(FortranCompiler):
std_warn_args = ['-fullwarn']
def __init__(self, exelist, version, is_cross, exe_wrapper=None):
super().__init__(exelist, version, is_cross, exe_wrapper=None)
self.id = 'pathscale'
def get_module_outdir_args(self, path):
return ['-module', path]
def get_always_args(self):
return []
def can_compile(self, src):
suffix = os.path.splitext(src)[1].lower()
if suffix == '.f' or suffix == '.f90' or suffix == '.f95':
return True
return False
def get_std_warn_args(self):
return PathScaleFortranCompiler.std_warn_args
class PGIFortranCompiler(FortranCompiler):
std_warn_args = ['-Minform=inform']
def __init__(self, exelist, version, is_cross, exe_wrapper=None):
super().__init__(exelist, version, is_cross, exe_wrapper=None)
self.id = 'pgi'
def get_module_outdir_args(self, path):
return ['-module', path]
def get_always_args(self):
return []
def can_compile(self, src):
suffix = os.path.splitext(src)[1].lower()
if suffix == '.f' or suffix == '.f90' or suffix == '.f95':
return True
return False
def get_std_warn_args(self):
return PGIFortranCompiler.std_warn_args
class Open64FortranCompiler(FortranCompiler):
std_warn_args = ['-fullwarn']
def __init__(self, exelist, version, is_cross, exe_wrapper=None):
super().__init__(exelist, version, is_cross, exe_wrapper=None)
self.id = 'open64'
def get_module_outdir_args(self, path):
return ['-module', path]
def get_always_args(self):
return []
def can_compile(self, src):
suffix = os.path.splitext(src)[1].lower()
if suffix == '.f' or suffix == '.f90' or suffix == '.f95':
return True
return False
def get_std_warn_args(self):
return Open64FortranCompiler.std_warn_args
2013-04-20 04:59:06 +08:00
class VisualStudioLinker():
always_args = ['/NOLOGO']
2013-04-20 04:59:06 +08:00
def __init__(self, exelist):
self.exelist = exelist
2013-10-07 00:54:15 +08:00
2013-04-20 04:59:06 +08:00
def get_exelist(self):
return self.exelist
def get_std_link_args(self):
2013-04-20 04:59:06 +08:00
return []
def get_buildtype_linker_args(self, buildtype):
return []
def get_output_args(self, target):
2013-04-20 04:59:06 +08:00
return ['/OUT:' + target]
def get_coverage_link_args(self):
2013-04-20 04:59:06 +08:00
return []
def get_always_args(self):
return VisualStudioLinker.always_args
2013-06-15 08:17:52 +08:00
def get_linker_always_args(self):
return VisualStudioLinker.always_args
2013-11-08 00:23:51 +08:00
2014-07-12 01:53:50 +08:00
def build_rpath_args(self, build_dir, rpath_paths, install_rpath):
2013-10-07 00:54:15 +08:00
return []
2013-01-06 00:13:38 +08:00
class ArLinker():
std_args = ['csr']
2013-02-09 02:02:42 +08:00
2013-01-06 00:13:38 +08:00
def __init__(self, exelist):
self.exelist = exelist
self.id = 'ar'
2013-10-05 04:25:34 +08:00
2014-07-12 01:53:50 +08:00
def build_rpath_args(self, build_dir, rpath_paths, install_rpath):
2013-10-05 04:25:34 +08:00
return []
2013-01-06 00:13:38 +08:00
def get_exelist(self):
return self.exelist
2013-11-08 00:23:51 +08:00
def get_std_link_args(self):
return self.std_args
2013-02-21 06:36:28 +08:00
def get_output_args(self, target):
2013-04-20 04:59:06 +08:00
return [target]
2013-01-02 06:54:32 +08:00
def get_buildtype_linker_args(self, buildtype):
2014-04-17 02:00:25 +08:00
return []
def get_linker_always_args(self):
2013-11-08 00:23:51 +08:00
return []
def get_coverage_link_args(self):
2013-02-21 06:36:28 +08:00
return []
def get_always_args(self):
2013-06-15 08:17:52 +08:00
return []
2013-10-07 00:54:15 +08:00
def exe_exists(arglist):
try:
p = subprocess.Popen(arglist, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
p.communicate()
if p.returncode == 0:
return True
except FileNotFoundError:
pass
return False
2013-02-21 06:36:28 +08:00
def find_coverage_tools():
gcovr_exe = 'gcovr'
lcov_exe = 'lcov'
genhtml_exe = 'genhtml'
2014-08-07 17:34:35 +08:00
if not exe_exists([gcovr_exe, '--version']):
2013-02-21 06:36:28 +08:00
gcovr_exe = None
if not exe_exists([lcov_exe, '--version']):
2013-02-21 06:36:28 +08:00
lcov_exe = None
if not exe_exists([genhtml_exe, '--version']):
2013-02-21 06:36:28 +08:00
genhtml_exe = None
return (gcovr_exe, lcov_exe, genhtml_exe)
def find_valgrind():
valgrind_exe = 'valgrind'
if not exe_exists([valgrind_exe, '--version']):
valgrind_exe = None
return valgrind_exe
2013-07-04 23:02:44 +08:00
def detect_ninja():
for n in ['ninja', 'ninja-build']:
# Plain 'ninja' or 'ninja -h' yields an error
# code. Thanks a bunch, guys.
try:
p = subprocess.Popen([n, '-t', 'list'], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
except FileNotFoundError:
continue
p.communicate()
if p.returncode == 0:
return n
header_suffixes = ['h', 'hh', 'hpp', 'hxx', 'H']
2014-02-24 04:07:54 +08:00
cpp_suffixes = ['cc', 'cpp', 'cxx', 'h', 'hh', 'hpp', 'hxx', 'c++']
c_suffixes = ['c']
clike_suffixes = c_suffixes + cpp_suffixes
obj_suffixes = ['o', 'obj']
def is_header(fname):
suffix = fname.split('.')[-1]
return suffix in header_suffixes
def is_source(fname):
suffix = fname.split('.')[-1]
return suffix in clike_suffixes
def is_object(fname):
suffix = fname.split('.')[-1]
return suffix in obj_suffixes
2012-12-30 00:38:22 +08:00
class Environment():
2013-02-25 04:44:01 +08:00
private_dir = 'meson-private'
2013-05-14 01:40:15 +08:00
log_dir = 'meson-logs'
2013-02-25 04:44:01 +08:00
coredata_file = os.path.join(private_dir, 'coredata.dat')
2014-06-17 05:17:45 +08:00
version_regex = '\d+(\.\d+)+(-[a-zA-Z0-9]+)?'
2013-02-23 19:24:41 +08:00
def __init__(self, source_dir, build_dir, main_script_file, options):
assert(os.path.isabs(main_script_file))
assert(not os.path.islink(main_script_file))
2012-12-30 00:38:22 +08:00
self.source_dir = source_dir
self.build_dir = build_dir
2013-02-23 19:24:41 +08:00
self.meson_script_file = main_script_file
2013-02-25 04:44:01 +08:00
self.scratch_dir = os.path.join(build_dir, Environment.private_dir)
2013-05-14 01:40:15 +08:00
self.log_dir = os.path.join(build_dir, Environment.log_dir)
os.makedirs(self.scratch_dir, exist_ok=True)
2013-05-14 01:40:15 +08:00
os.makedirs(self.log_dir, exist_ok=True)
2013-02-25 04:44:01 +08:00
try:
cdf = os.path.join(self.get_build_dir(), Environment.coredata_file)
self.coredata = coredata.load(cdf)
except FileNotFoundError:
self.coredata = coredata.CoreData(options)
if self.coredata.cross_file:
self.cross_info = CrossBuildInfo(self.coredata.cross_file)
else:
self.cross_info = None
self.cmd_line_options = options.projectoptions
2014-04-03 03:51:52 +08:00
# List of potential compilers.
if is_windows():
self.default_c = ['cl', 'cc']
2013-06-03 03:31:10 +08:00
self.default_cpp = ['cl', 'c++']
else:
self.default_c = ['cc']
2013-06-03 03:31:10 +08:00
self.default_cpp = ['c++']
2013-04-07 01:55:37 +08:00
self.default_objc = ['cc']
2013-06-03 03:31:10 +08:00
self.default_objcpp = ['c++']
2014-08-13 23:17:53 +08:00
self.default_fortran = ['gfortran', 'g95', 'f95', 'f90', 'f77']
2013-04-20 04:59:06 +08:00
self.default_static_linker = 'ar'
self.vs_static_linker = 'lib'
2014-04-03 03:51:52 +08:00
2013-08-24 06:55:00 +08:00
cross = self.is_cross_build()
if (not cross and is_windows()) \
or (cross and self.cross_info['name'] == 'windows'):
self.exe_suffix = 'exe'
self.import_lib_suffix = 'lib'
self.shared_lib_suffix = 'dll'
self.shared_lib_prefix = ''
self.static_lib_suffix = 'lib'
self.static_lib_prefix = ''
self.object_suffix = 'obj'
else:
self.exe_suffix = ''
2013-08-24 06:55:00 +08:00
if (not cross and is_osx()) or \
(cross and self.cross_info['name'] == 'darwin'):
self.shared_lib_suffix = 'dylib'
else:
self.shared_lib_suffix = 'so'
self.shared_lib_prefix = 'lib'
self.static_lib_suffix = 'a'
self.static_lib_prefix = 'lib'
self.object_suffix = 'o'
self.import_lib_suffix = self.shared_lib_suffix
2013-08-24 06:55:00 +08:00
def is_cross_build(self):
return self.cross_info is not None
2013-02-25 04:44:01 +08:00
def generating_finished(self):
cdf = os.path.join(self.get_build_dir(), Environment.coredata_file)
coredata.save(self.coredata, cdf)
2013-02-25 04:44:01 +08:00
def get_script_dir(self):
return os.path.dirname(self.meson_script_file)
2014-08-07 17:34:35 +08:00
2013-05-14 01:40:15 +08:00
def get_log_dir(self):
return self.log_dir
2012-12-30 00:38:22 +08:00
def get_coredata(self):
return self.coredata
2013-02-25 05:11:14 +08:00
2013-02-23 19:24:41 +08:00
def get_build_command(self):
return self.meson_script_file
def is_header(self, fname):
return is_header(fname)
def is_source(self, fname):
return is_source(fname)
2013-01-02 06:54:32 +08:00
def is_object(self, fname):
return is_object(fname)
2013-10-19 01:55:10 +08:00
def merge_options(self, options):
for (name, value) in options.items():
if name not in self.coredata.user_options:
self.coredata.user_options[name] = value
else:
oldval = self.coredata.user_options[name]
if type(oldval) != type(value):
self.coredata.user_options[name] = value
def detect_c_compiler(self, want_cross):
evar = 'CC'
if self.is_cross_build() and want_cross:
compilers = [self.cross_info['c']]
ccache = []
is_cross = True
exe_wrap = self.cross_info.get('exe_wrapper', None)
elif evar in os.environ:
compilers = os.environ[evar].split()
ccache = []
is_cross = False
exe_wrap = None
else:
compilers = self.default_c
ccache = self.detect_ccache()
is_cross = False
exe_wrap = None
for compiler in compilers:
try:
2014-08-07 17:34:35 +08:00
basename = os.path.basename(compiler).lower()
if basename == 'cl' or basename == 'cl.exe':
arg = '/?'
else:
arg = '--version'
2013-04-20 02:10:41 +08:00
p = subprocess.Popen([compiler] + [arg], stdout=subprocess.PIPE,
2013-08-28 23:47:59 +08:00
stderr=subprocess.PIPE)
except OSError:
continue
2013-08-28 23:47:59 +08:00
(out, err) = p.communicate()
out = out.decode()
2013-08-28 23:47:59 +08:00
err = err.decode()
vmatch = re.search(Environment.version_regex, out)
if vmatch:
version = vmatch.group(0)
else:
version = 'unknown version'
2013-10-06 05:22:44 +08:00
if 'apple' in out and 'Free Software Foundation' in out:
return GnuCCompiler(ccache + [compiler], version, GCC_OSX, is_cross, exe_wrap)
2013-08-24 05:01:58 +08:00
if (out.startswith('cc') or 'gcc' in out) and \
'Free Software Foundation' in out:
2013-10-06 05:22:44 +08:00
return GnuCCompiler(ccache + [compiler], version, GCC_STANDARD, is_cross, exe_wrap)
2014-03-09 19:33:40 +08:00
if 'clang' in out:
2013-08-28 23:47:59 +08:00
return ClangCCompiler(ccache + [compiler], version, is_cross, exe_wrap)
if 'Microsoft' in out:
2013-08-28 23:47:59 +08:00
# Visual Studio prints version number to stderr but
# everything else to stdout. Why? Lord only knows.
version = re.search(Environment.version_regex, err).group()
return VisualStudioCCompiler([compiler], version, is_cross, exe_wrap)
raise EnvironmentException('Unknown compiler(s): "' + ', '.join(compilers) + '"')
2013-01-02 06:54:32 +08:00
2014-08-01 21:25:29 +08:00
def detect_fortran_compiler(self, want_cross):
evar = 'FC'
if self.is_cross_build() and want_cross:
compilers = [self.cross_info['fortran']]
is_cross = True
exe_wrap = self.cross_info.get('exe_wrapper', None)
elif evar in os.environ:
compilers = os.environ[evar].split()
is_cross = False
exe_wrap = None
else:
compilers = self.default_fortran
is_cross = False
exe_wrap = None
for compiler in compilers:
for arg in ['--version', '-V']:
try:
p = subprocess.Popen([compiler] + [arg], stdout=subprocess.PIPE,
2014-08-01 21:25:29 +08:00
stderr=subprocess.PIPE)
except OSError:
continue
(out, err) = p.communicate()
out = out.decode()
err = err.decode()
2014-08-01 21:25:29 +08:00
version = 'unknown version'
vmatch = re.search(Environment.version_regex, out)
2014-08-13 23:21:13 +08:00
if vmatch:
version = vmatch.group(0)
if 'GNU Fortran' in out:
2014-08-13 23:17:53 +08:00
return GnuFortranCompiler([compiler], version, GCC_STANDARD, is_cross, exe_wrap)
if 'G95' in out:
2014-08-13 23:17:53 +08:00
return G95FortranCompiler([compiler], version, is_cross, exe_wrap)
if 'Sun Fortran' in err:
version = 'unknown version'
vmatch = re.search(Environment.version_regex, err)
if vmatch:
version = vmatch.group(0)
2014-08-13 23:17:53 +08:00
return SunFortranCompiler([compiler], version, is_cross, exe_wrap)
if 'ifort (IFORT)' in out:
return IntelFortranCompiler([compiler], version, is_cross, exe_wrap)
if 'PathScale EKOPath(tm)' in err:
return PathScaleFortranCompiler([compiler], version, is_cross, exe_wrap)
if 'pgf90' in out:
return PGIFortranCompiler([compiler], version, is_cross, exe_wrap)
if 'Open64 Compiler Suite' in err:
return Open64FortranCompiler([compiler], version, is_cross, exe_wrap)
2014-08-01 21:25:29 +08:00
raise EnvironmentException('Unknown compiler(s): "' + ', '.join(compilers) + '"')
def get_scratch_dir(self):
return self.scratch_dir
2012-12-30 00:38:22 +08:00
def get_depfixer(self):
path = os.path.split(__file__)[0]
return os.path.join(path, 'depfixer.py')
2013-08-31 04:00:19 +08:00
def detect_cpp_compiler(self, want_cross):
evar = 'CXX'
2013-08-31 04:00:19 +08:00
if self.is_cross_build() and want_cross:
2013-08-24 05:01:58 +08:00
compilers = [self.cross_info['cpp']]
ccache = []
is_cross = True
exe_wrap = self.cross_info.get('exe_wrapper', None)
elif evar in os.environ:
compilers = os.environ[evar].split()
2013-04-20 03:11:20 +08:00
ccache = []
2013-08-24 05:01:58 +08:00
is_cross = False
exe_wrap = None
2013-04-20 03:11:20 +08:00
else:
2013-06-03 03:31:10 +08:00
compilers = self.default_cpp
2013-04-20 03:11:20 +08:00
ccache = self.detect_ccache()
2013-08-24 05:01:58 +08:00
is_cross = False
exe_wrap = None
2013-04-20 03:11:20 +08:00
for compiler in compilers:
2014-08-07 17:34:35 +08:00
basename = os.path.basename(compiler).lower()
2013-04-20 03:11:20 +08:00
if basename == 'cl' or basename == 'cl.exe':
arg = '/?'
else:
arg = '--version'
try:
p = subprocess.Popen([compiler, arg],
stdout=subprocess.PIPE,
2013-08-28 23:47:59 +08:00
stderr=subprocess.PIPE)
2013-04-20 03:11:20 +08:00
except OSError:
continue
2013-08-28 23:47:59 +08:00
(out, err) = p.communicate()
2013-04-20 03:11:20 +08:00
out = out.decode()
2013-08-28 23:47:59 +08:00
err = err.decode()
vmatch = re.search(Environment.version_regex, out)
if vmatch:
version = vmatch.group(0)
else:
version = 'unknown version'
if 'apple' in out and 'Free Software Foundation' in out:
return GnuCPPCompiler(ccache + [compiler], version, GCC_OSX, is_cross, exe_wrap)
2013-08-25 02:38:43 +08:00
if (out.startswith('c++ ') or 'g++' in out or 'GCC' in out) and \
2013-04-20 03:11:20 +08:00
'Free Software Foundation' in out:
return GnuCPPCompiler(ccache + [compiler], version, GCC_STANDARD, is_cross, exe_wrap)
2014-03-09 19:33:40 +08:00
if 'clang' in out:
2013-08-28 23:47:59 +08:00
return ClangCPPCompiler(ccache + [compiler], version, is_cross, exe_wrap)
2013-04-20 03:11:20 +08:00
if 'Microsoft' in out:
2013-08-28 23:47:59 +08:00
version = re.search(Environment.version_regex, err).group()
return VisualStudioCPPCompiler([compiler], version, is_cross, exe_wrap)
2013-04-20 03:11:20 +08:00
raise EnvironmentException('Unknown compiler(s) "' + ', '.join(compilers) + '"')
2013-03-26 03:05:57 +08:00
2013-09-01 01:49:51 +08:00
def detect_objc_compiler(self, want_cross):
if self.is_cross_build() and want_cross:
2013-08-24 07:04:11 +08:00
exelist = [self.cross_info['objc']]
is_cross = True
exe_wrap = self.cross_info.get('exe_wrapper', None)
else:
exelist = self.get_objc_compiler_exelist()
is_cross = False
exe_wrap = None
2013-04-07 01:55:37 +08:00
try:
2013-08-28 23:53:37 +08:00
p = subprocess.Popen(exelist + ['--version'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
2013-04-07 01:55:37 +08:00
except OSError:
raise EnvironmentException('Could not execute ObjC compiler "%s"' % ' '.join(exelist))
2013-08-28 23:53:37 +08:00
(out, err) = p.communicate()
2013-04-07 01:55:37 +08:00
out = out.decode()
2013-08-28 23:53:37 +08:00
err = err.decode()
vmatch = re.search(Environment.version_regex, out)
if vmatch:
version = vmatch.group(0)
else:
version = 'unknown version'
2013-08-24 07:04:11 +08:00
if (out.startswith('cc ') or 'gcc' in out) and \
2013-04-07 01:55:37 +08:00
'Free Software Foundation' in out:
2013-08-28 23:53:37 +08:00
return GnuObjCCompiler(exelist, version, is_cross, exe_wrap)
2014-04-03 03:51:52 +08:00
if out.startswith('Apple LLVM'):
return ClangObjCCompiler(exelist, version, is_cross, exe_wrap)
2013-04-09 05:11:58 +08:00
if 'apple' in out and 'Free Software Foundation' in out:
2013-08-28 23:53:37 +08:00
return GnuObjCCompiler(exelist, version, is_cross, exe_wrap)
2013-04-07 01:55:37 +08:00
raise EnvironmentException('Unknown compiler "' + ' '.join(exelist) + '"')
2013-09-01 01:49:51 +08:00
def detect_objcpp_compiler(self, want_cross):
if self.is_cross_build() and want_cross:
exelist = [self.cross_info['objcpp']]
2013-08-24 07:04:11 +08:00
is_cross = True
exe_wrap = self.cross_info.get('exe_wrapper', None)
else:
exelist = self.get_objcpp_compiler_exelist()
is_cross = False
exe_wrap = None
2013-04-07 03:03:16 +08:00
try:
2013-08-28 23:53:37 +08:00
p = subprocess.Popen(exelist + ['--version'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
2013-04-07 03:03:16 +08:00
except OSError:
raise EnvironmentException('Could not execute ObjC++ compiler "%s"' % ' '.join(exelist))
2013-08-28 23:53:37 +08:00
(out, err) = p.communicate()
2013-04-07 03:03:16 +08:00
out = out.decode()
2013-08-28 23:53:37 +08:00
err = err.decode()
vmatch = re.search(Environment.version_regex, out)
if vmatch:
version = vmatch.group(0)
else:
version = 'unknown version'
2013-04-07 03:03:16 +08:00
if (out.startswith('c++ ') or out.startswith('g++')) and \
'Free Software Foundation' in out:
2013-08-28 23:53:37 +08:00
return GnuObjCPPCompiler(exelist, version, is_cross, exe_wrap)
2014-04-03 03:51:52 +08:00
if out.startswith('Apple LLVM'):
return ClangObjCPPCompiler(exelist, version, is_cross, exe_wrap)
2013-04-09 05:11:58 +08:00
if 'apple' in out and 'Free Software Foundation' in out:
2013-08-28 23:53:37 +08:00
return GnuObjCPPCompiler(exelist, version, is_cross, exe_wrap)
2013-04-07 03:03:16 +08:00
raise EnvironmentException('Unknown compiler "' + ' '.join(exelist) + '"')
2014-03-11 04:49:29 +08:00
def detect_java_compiler(self):
exelist = ['javac']
try:
p = subprocess.Popen(exelist + ['-version'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
except OSError:
raise EnvironmentException('Could not execute Java compiler "%s"' % ' '.join(exelist))
(out, err) = p.communicate()
out = out.decode()
err = err.decode()
vmatch = re.search(Environment.version_regex, err)
if vmatch:
version = vmatch.group(0)
else:
version = 'unknown version'
if 'javac' in err:
return JavaCompiler(exelist, version)
raise EnvironmentException('Unknown compiler "' + ' '.join(exelist) + '"')
2014-07-19 02:49:14 +08:00
def detect_cs_compiler(self):
exelist = ['mcs']
try:
p = subprocess.Popen(exelist + ['--version'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
except OSError:
raise EnvironmentException('Could not execute C# compiler "%s"' % ' '.join(exelist))
(out, err) = p.communicate()
out = out.decode()
err = err.decode()
vmatch = re.search(Environment.version_regex, out)
if vmatch:
version = vmatch.group(0)
else:
version = 'unknown version'
if 'Mono' in out:
return MonoCompiler(exelist, version)
raise EnvironmentException('Unknown compiler "' + ' '.join(exelist) + '"')
2014-05-10 06:14:52 +08:00
def detect_vala_compiler(self):
exelist = ['valac']
try:
p = subprocess.Popen(exelist + ['--version'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
except OSError:
raise EnvironmentException('Could not execute Vala compiler "%s"' % ' '.join(exelist))
(out, _) = p.communicate()
out = out.decode()
vmatch = re.search(Environment.version_regex, out)
if vmatch:
version = vmatch.group(0)
else:
version = 'unknown version'
if 'Vala' in out:
return ValaCompiler(exelist, version)
raise EnvironmentException('Unknown compiler "' + ' '.join(exelist) + '"')
2014-06-18 06:22:55 +08:00
def detect_rust_compiler(self):
exelist = ['rustc']
try:
p = subprocess.Popen(exelist + ['--version'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
except OSError:
raise EnvironmentException('Could not execute Rust compiler "%s"' % ' '.join(exelist))
(out, _) = p.communicate()
out = out.decode()
vmatch = re.search(Environment.version_regex, out)
if vmatch:
version = vmatch.group(0)
else:
version = 'unknown version'
if 'rustc' in out:
return RustCompiler(exelist, version)
raise EnvironmentException('Unknown compiler "' + ' '.join(exelist) + '"')
2013-04-20 04:59:06 +08:00
def detect_static_linker(self, compiler):
2013-08-31 04:07:26 +08:00
if compiler.is_cross:
linker = self.cross_info['ar']
2013-04-20 04:59:06 +08:00
else:
2013-08-31 04:07:26 +08:00
evar = 'AR'
if evar in os.environ:
linker = os.environ[evar].strip()
if isinstance(compiler, VisualStudioCCompiler):
linker= self.vs_static_linker
else:
linker = self.default_static_linker
2013-04-20 04:59:06 +08:00
basename = os.path.basename(linker).lower()
if basename == 'lib' or basename == 'lib.exe':
arg = '/?'
else:
arg = '--version'
2013-03-26 03:05:57 +08:00
try:
2013-04-20 04:59:06 +08:00
p = subprocess.Popen([linker, arg], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
2013-03-26 03:05:57 +08:00
except OSError:
2013-04-20 04:59:06 +08:00
raise EnvironmentException('Could not execute static linker "%s".' % linker)
2013-03-03 19:13:31 +08:00
(out, err) = p.communicate()
2013-01-06 00:13:38 +08:00
out = out.decode()
2013-03-03 19:13:31 +08:00
err = err.decode()
2013-04-20 04:59:06 +08:00
if '/OUT:' in out or '/OUT:' in err:
return VisualStudioLinker([linker])
2013-01-06 00:13:38 +08:00
if p.returncode == 0:
2013-04-20 04:59:06 +08:00
return ArLinker([linker])
2013-03-03 19:13:31 +08:00
if p.returncode == 1 and err.startswith('usage'): # OSX
2013-04-20 04:59:06 +08:00
return ArLinker([linker])
raise EnvironmentException('Unknown static linker "%s"' % linker)
2013-01-02 06:54:32 +08:00
def detect_ccache(self):
2013-03-03 19:13:31 +08:00
try:
has_ccache = subprocess.call(['ccache', '--version'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
2013-03-03 21:53:29 +08:00
except OSError:
2013-03-03 19:13:31 +08:00
has_ccache = 1
if has_ccache == 0:
cmdlist = ['ccache']
else:
cmdlist = []
return cmdlist
2013-04-07 01:55:37 +08:00
def get_objc_compiler_exelist(self):
ccachelist = self.detect_ccache()
evar = 'OBJCC'
if evar in os.environ:
return os.environ[evar].split()
return ccachelist + self.default_objc
2013-06-03 03:31:10 +08:00
def get_objcpp_compiler_exelist(self):
2013-04-07 03:03:16 +08:00
ccachelist = self.detect_ccache()
evar = 'OBJCXX'
if evar in os.environ:
return os.environ[evar].split()
2013-06-03 03:31:10 +08:00
return ccachelist + self.default_objcpp
2013-04-07 03:03:16 +08:00
2012-12-30 00:38:22 +08:00
def get_source_dir(self):
return self.source_dir
2014-07-18 23:08:22 +08:00
2012-12-30 00:38:22 +08:00
def get_build_dir(self):
return self.build_dir
def get_exe_suffix(self):
return self.exe_suffix
# On Windows the library has suffix dll
# but you link against a file that has suffix lib.
def get_import_lib_suffix(self):
return self.import_lib_suffix
2012-12-30 00:38:22 +08:00
def get_shared_lib_prefix(self):
return self.shared_lib_prefix
def get_shared_lib_suffix(self):
return self.shared_lib_suffix
def get_static_lib_prefix(self):
return self.static_lib_prefix
def get_static_lib_suffix(self):
return self.static_lib_suffix
2013-01-12 20:31:43 +08:00
2012-12-30 01:51:32 +08:00
def get_object_suffix(self):
return self.object_suffix
2013-01-12 20:31:43 +08:00
2013-01-12 08:25:06 +08:00
def get_prefix(self):
return self.coredata.prefix
2013-01-12 20:31:43 +08:00
2013-01-12 08:25:06 +08:00
def get_libdir(self):
return self.coredata.libdir
2013-01-12 20:31:43 +08:00
2013-01-12 08:25:06 +08:00
def get_bindir(self):
return self.coredata.bindir
2013-01-12 20:31:43 +08:00
2013-01-12 19:53:19 +08:00
def get_includedir(self):
return self.coredata.includedir
2012-12-30 00:38:22 +08:00
2013-01-12 20:31:43 +08:00
def get_mandir(self):
return self.coredata.mandir
2013-01-12 20:31:43 +08:00
2013-01-14 01:25:54 +08:00
def get_datadir(self):
return self.coredata.datadir
2013-01-14 01:25:54 +08:00
2013-03-10 04:42:01 +08:00
def find_library(self, libname):
dirs = self.get_library_dirs()
suffixes = [self.get_shared_lib_suffix(), self.get_static_lib_suffix()]
prefix = self.get_shared_lib_prefix()
for d in dirs:
for suffix in suffixes:
trial = os.path.join(d, prefix + libname + '.' + suffix)
if os.path.isfile(trial):
return trial
def get_library_dirs(self):
2013-08-12 03:55:40 +08:00
return get_library_dirs()
def get_library_dirs():
2013-03-10 04:42:01 +08:00
if is_windows():
return ['C:/mingw/lib'] # Fixme
if is_osx():
return ['/usr/lib'] # Fix me as well.
2013-06-09 20:10:25 +08:00
# The following is probably Debian/Ubuntu specific.
2013-03-10 04:42:01 +08:00
unixdirs = ['/usr/lib', '/lib']
plat = subprocess.check_output(['uname', '-m']).decode().strip()
2013-06-09 20:10:25 +08:00
# This is a terrible hack. I admit it and I'm really sorry.
# I just don't know what the correct solution is.
if plat == 'i686':
plat = 'i386'
2014-09-21 19:13:22 +08:00
if plat.startswith('arm'):
plat = 'arm'
2013-03-10 04:42:01 +08:00
unixdirs += glob('/usr/lib/' + plat + '*')
if os.path.exists('/usr/lib64'):
unixdirs.append('/usr/lib64')
unixdirs += glob('/lib/' + plat + '*')
if os.path.exists('/lib64'):
unixdirs.append('/lib64')
2013-06-09 20:10:25 +08:00
unixdirs += glob('/lib/' + plat + '*')
2013-03-10 04:42:01 +08:00
unixdirs.append('/usr/local/lib')
return unixdirs
def get_args_from_envvars(lang):
if lang == 'c':
compile_args = os.environ.get('CFLAGS', '').split()
link_args = compile_args + os.environ.get('LDFLAGS', '').split()
compile_args += os.environ.get('CPPFLAGS', '').split()
elif lang == 'cpp':
compile_args = os.environ.get('CXXFLAGS', '').split()
link_args = compile_args + os.environ.get('LDFLAGS', '').split()
compile_args += os.environ.get('CPPFLAGS', '').split()
2014-08-01 21:29:24 +08:00
elif lang == 'fortran':
compile_args = os.environ.get('FFLAGS', '').split()
link_args = compile_args + os.environ.get('LDFLAGS', '').split()
else:
compile_args = []
link_args = []
return (compile_args, link_args)
class CrossBuildInfo():
def __init__(self, filename):
self.items = {}
self.parse_datafile(filename)
if not 'name' in self:
2013-08-31 04:13:43 +08:00
raise EnvironmentException('Cross file must specify "name" (e.g. "linux", "darwin" or "windows".')
def ok_type(self, i):
2013-08-25 04:32:13 +08:00
return isinstance(i, str) or isinstance(i, int) or isinstance(i, bool)
def parse_datafile(self, filename):
# This is a bit hackish at the moment.
for i, line in enumerate(open(filename)):
linenum = i+1
line = line.strip()
if line == '':
continue
if '=' not in line:
raise EnvironmentException('Malformed line in cross file %s:%d.' % (filename, linenum))
(varname, value) = line.split('=', 1)
varname = varname.strip()
if ' ' in varname or '\t' in varname or "'" in varname or '"' in varname:
raise EnvironmentException('Malformed variable name in cross file %s:%d.' % (filename, linenum))
try:
2013-08-25 04:32:13 +08:00
res = eval(value, {'true' : True, 'false' : False})
except Exception:
raise EnvironmentException('Malformed line in cross file %s:%d.' % (filename, linenum))
if self.ok_type(res):
self.items[varname] = res
elif isinstance(res, list):
for i in res:
if not self.ok_type(i):
raise EnvironmentException('Malformed line in cross file %s:%d.' % (filename, linenum))
self.items[varname] = res
else:
raise EnvironmentException('Malformed line in cross file %s:%d.' % (filename, linenum))
def __getitem__(self, ind):
2013-08-31 04:11:35 +08:00
try:
return self.items[ind]
except KeyError:
raise EnvironmentException('Cross file does not specify variable "%s".' % ind)
def __contains__(self, item):
return item in self.items
def get(self, *args, **kwargs):
return self.items.get(*args, **kwargs)