meson/environment.py

864 lines
28 KiB
Python
Raw Normal View History

2012-12-24 06:11:24 +08:00
# Copyright 2012 Jussi Pakkanen
# 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.
import subprocess, os.path, platform
2013-02-25 04:30:02 +08:00
import coredata
2013-03-10 04:42:01 +08:00
from glob import glob
import tempfile
2012-12-24 06:11:24 +08:00
2013-02-23 19:24:41 +08:00
build_filename = 'meson.build'
2012-12-24 06:11:24 +08:00
class EnvironmentException(Exception):
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 CCompiler():
def __init__(self, exelist):
if type(exelist) == type(''):
self.exelist = [exelist]
elif type(exelist) == type([]):
self.exelist = exelist
else:
raise TypeError('Unknown argument to CCompiler')
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'
2013-06-15 08:17:52 +08:00
def get_always_flags(self):
return []
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_flags(self, outtarget, outfile):
return ['-MMD', '-MT', outtarget, '-MF', outfile]
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
2012-12-24 16:33:09 +08:00
def get_exelist(self):
return self.exelist[:]
2013-04-20 02:43:36 +08:00
def get_linker_exelist(self):
return self.exelist[:]
2012-12-30 02:02:37 +08:00
2012-12-24 16:45:26 +08:00
def get_compile_only_flags(self):
return ['-c']
2012-12-30 02:02:37 +08:00
2013-04-20 02:43:36 +08:00
def get_output_flags(self, target):
return ['-o', target]
def get_linker_output_flags(self, outputname):
return ['-o', outputname]
2012-12-30 02:02:37 +08:00
def get_debug_flags(self):
return ['-g']
2013-02-21 06:36:28 +08:00
def get_coverage_flags(self):
return ['--coverage']
def get_coverage_link_flags(self):
return ['-lgcov']
2013-01-06 03:08:08 +08:00
def get_std_exe_link_flags(self):
2013-01-06 00:13:38 +08:00
return []
2013-02-21 06:36:28 +08:00
2013-01-14 02:50:16 +08:00
def get_include_arg(self, path):
return '-I' + path
2012-12-30 02:02:37 +08:00
2013-01-06 03:08:08 +08:00
def get_std_shared_lib_link_flags(self):
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
2013-01-06 03:08:08 +08:00
def get_pic_flags(self):
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())
pe = subprocess.Popen(binary_name)
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>
'''
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_flags()
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
def sizeof(self, element, prefix):
2013-06-01 05:35:11 +08:00
templ = '''#include<stdio.h>
%s
2013-06-01 05:35:11 +08:00
int main(int argc, char **argv) {
printf("%%ld\\n", (long)(sizeof(%s)));
return 0;
};
'''
(fd, srcname) = tempfile.mkstemp(suffix='.'+self.default_suffix)
exename = srcname + '.exe' # Is guaranteed to be executable on every platform.
os.close(fd)
ofile = open(srcname, 'w')
code = templ % (prefix, element)
2013-06-01 05:35:11 +08:00
ofile.write(code)
ofile.close()
commands = self.get_exelist()
commands.append(srcname)
commands += self.get_output_flags(exename)
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:
raise EnvironmentException('Could not compile sizeof test.')
pe = subprocess.Popen(exename, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
so = pe.communicate()[0]
os.remove(exename)
if pe.returncode != 0:
raise EnvironmentException('Could not run sizeof test binary.')
return int(so.decode())
2013-06-03 03:31:10 +08:00
class CPPCompiler(CCompiler):
2013-01-02 06:54:32 +08:00
def __init__(self, exelist):
CCompiler.__init__(self, exelist)
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-01-02 06:54:32 +08:00
pe = subprocess.Popen(binary_name)
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):
def __init__(self, exelist):
CCompiler.__init__(self, exelist)
2013-04-07 04:09:30 +08:00
self.language = 'objc'
self.default_suffix = 'm'
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
2013-06-03 03:31:10 +08:00
class ObjCPPCompiler(CPPCompiler):
2013-04-07 03:03:16 +08:00
def __init__(self, exelist):
2013-06-03 03:31:10 +08:00
CPPCompiler.__init__(self, exelist)
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
class VisualStudioCCompiler(CCompiler):
2013-04-20 03:11:20 +08:00
std_warn_flags = ['/W3']
std_opt_flags= ['/O2']
2013-06-15 08:17:52 +08:00
always_flags = ['/nologo', '/showIncludes']
def __init__(self, exelist):
CCompiler.__init__(self, exelist)
2013-04-22 05:51:25 +08:00
self.id = 'msvc'
2013-06-15 08:17:52 +08:00
def get_always_flags(self):
return VisualStudioCCompiler.always_flags
def get_std_warn_flags(self):
return VisualStudioCCompiler.std_warn_flags
def get_std_opt_flags(self):
return VisualStudioCCompiler.std_opt_flags
def get_pch_suffix(self):
return 'pch'
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_flags(self):
return ['/D_DEBUG', '/Zi', '/MDd', '/Ob0', '/RTC1']
def get_compile_only_flags(self):
return ['/c']
2013-04-20 02:43:36 +08:00
def get_output_flags(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_flags(self, outtarget, outfile):
return []
def get_linker_exelist(self):
return ['link'] # FIXME, should have same path as compiler.
def get_linker_output_flags(self, outputname):
return ['/OUT:' + outputname]
2013-04-20 05:30:44 +08:00
def get_pic_flags(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_flags(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):
return ['/Yc' + header, '/Fp' + pchname]
2013-04-20 02:10:41 +08:00
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) { return 0; }\n')
ofile.close()
pc = subprocess.Popen(self.exelist + [source_name, '/Fe' + binary_name],
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL)
pc.wait()
if pc.returncode != 0:
raise EnvironmentException('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 C++ compiler %s are not runnable.' % self.name_string())
2013-06-03 03:31:10 +08:00
class VisualStudioCPPCompiler(VisualStudioCCompiler):
2013-04-20 03:11:20 +08:00
def __init__(self, exelist):
VisualStudioCCompiler.__init__(self, exelist)
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):
2013-06-03 03:31:10 +08:00
source_name = os.path.join(work_dir, 'sanitycheckcpp.cpp')
binary_name = os.path.join(work_dir, 'sanitycheckcpp')
2013-04-20 03:11:20 +08:00
ofile = open(source_name, 'w')
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)
pc.wait()
if pc.returncode != 0:
raise EnvironmentException('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 C++ compiler %s are not runnable.' % self.name_string())
2012-12-24 06:11:24 +08:00
class GnuCCompiler(CCompiler):
2012-12-24 16:33:09 +08:00
std_warn_flags = ['-Wall', '-Winvalid-pch']
std_opt_flags = ['-O2']
2013-01-02 06:54:32 +08:00
def __init__(self, exelist):
CCompiler.__init__(self, exelist)
2013-04-22 05:51:25 +08:00
self.id = 'gcc'
2012-12-24 06:11:24 +08:00
def get_std_warn_flags(self):
return GnuCCompiler.std_warn_flags
2012-12-24 16:33:09 +08:00
def get_std_opt_flags(self):
return GnuCCompiler.std_opt_flags
2012-12-24 16:45:26 +08:00
2013-01-14 02:50:16 +08:00
def get_pch_suffix(self):
return 'gch'
2013-04-07 01:55:37 +08:00
class GnuObjCCompiler(ObjCCompiler):
std_warn_flags = ['-Wall', '-Winvalid-pch']
std_opt_flags = ['-O2']
2013-04-22 05:51:25 +08:00
def __init__(self, exelist):
ObjCCompiler.__init__(self, exelist)
self.id = 'gcc'
2013-04-07 01:55:37 +08:00
def get_std_warn_flags(self):
return GnuObjCCompiler.std_warn_flags
def get_std_opt_flags(self):
return GnuObjCCompiler.std_opt_flags
def get_pch_suffix(self):
return 'gch'
2013-06-03 03:31:10 +08:00
class GnuObjCPPCompiler(ObjCPPCompiler):
2013-04-07 03:03:16 +08:00
std_warn_flags = ['-Wall', '-Winvalid-pch']
std_opt_flags = ['-O2']
2013-04-22 05:51:25 +08:00
def __init__(self, exelist):
ObjCCompiler.__init__(self, exelist)
self.id = 'gcc'
2013-04-07 03:03:16 +08:00
def get_std_warn_flags(self):
2013-06-03 03:31:10 +08:00
return GnuObjCPPCompiler.std_warn_flags
2013-04-07 03:03:16 +08:00
def get_std_opt_flags(self):
2013-06-03 03:31:10 +08:00
return GnuObjCPPCompiler.std_opt_flags
2013-04-07 03:03:16 +08:00
def get_pch_suffix(self):
return 'gch'
2013-02-10 21:05:35 +08:00
class ClangCCompiler(CCompiler):
std_warn_flags = ['-Wall', '-Winvalid-pch']
std_opt_flags = ['-O2']
def __init__(self, exelist):
CCompiler.__init__(self, exelist)
2013-04-22 05:51:25 +08:00
self.id = 'clang'
2013-02-10 21:05:35 +08:00
def get_std_warn_flags(self):
return ClangCCompiler.std_warn_flags
def get_std_opt_flags(self):
return ClangCCompiler.std_opt_flags
def get_pch_suffix(self):
return 'pch'
2013-06-03 03:31:10 +08:00
class GnuCPPCompiler(CPPCompiler):
2013-01-02 06:54:32 +08:00
std_warn_flags = ['-Wall', '-Winvalid-pch']
std_opt_flags = ['-O2']
def __init__(self, exelist):
2013-06-03 03:31:10 +08:00
CPPCompiler.__init__(self, exelist)
2013-04-22 05:51:25 +08:00
self.id = 'gcc'
2013-01-02 06:54:32 +08:00
def get_std_warn_flags(self):
2013-06-03 03:31:10 +08:00
return GnuCPPCompiler.std_warn_flags
2013-01-02 06:54:32 +08:00
def get_std_opt_flags(self):
2013-06-03 03:31:10 +08:00
return GnuCPPCompiler.std_opt_flags
2013-01-02 06:54:32 +08:00
2013-01-14 02:50:16 +08:00
def get_pch_suffix(self):
return 'gch'
2013-06-03 03:31:10 +08:00
class ClangCPPCompiler(CPPCompiler):
2013-02-10 21:05:35 +08:00
std_warn_flags = ['-Wall', '-Winvalid-pch']
std_opt_flags = ['-O2']
2013-02-21 06:36:28 +08:00
2013-02-10 21:05:35 +08:00
def __init__(self, exelist):
2013-06-03 03:31:10 +08:00
CPPCompiler.__init__(self, exelist)
2013-04-22 05:51:25 +08:00
self.id = 'clang'
2013-02-10 21:05:35 +08:00
def get_std_warn_flags(self):
2013-06-03 03:31:10 +08:00
return ClangCPPCompiler.std_warn_flags
2013-02-10 21:05:35 +08:00
def get_std_opt_flags(self):
2013-06-03 03:31:10 +08:00
return ClangCPPCompiler.std_opt_flags
2013-02-10 21:05:35 +08:00
def get_pch_suffix(self):
return 'pch'
2013-04-20 04:59:06 +08:00
class VisualStudioLinker():
2013-06-15 08:17:52 +08:00
always_flags = ['/NOLOGO']
2013-04-20 04:59:06 +08:00
def __init__(self, exelist):
self.exelist = exelist
def get_exelist(self):
return self.exelist
def get_std_link_flags(self):
return []
def get_output_flags(self, target):
return ['/OUT:' + target]
def get_coverage_link_flags(self):
return []
2013-06-15 08:17:52 +08:00
def get_always_flags(self):
return VisualStudioLinker.always_flags
2013-01-06 00:13:38 +08:00
class ArLinker():
std_flags = ['csr']
2013-02-09 02:02:42 +08:00
2013-01-06 00:13:38 +08:00
def __init__(self, exelist):
self.exelist = exelist
def get_exelist(self):
return self.exelist
def get_std_link_flags(self):
return self.std_flags
2013-02-21 06:36:28 +08:00
2013-04-20 04:59:06 +08:00
def get_output_flags(self, target):
return [target]
2013-01-02 06:54:32 +08:00
2013-02-21 06:36:28 +08:00
def get_coverage_link_flags(self):
return []
2013-06-15 08:17:52 +08:00
def get_always_flags(self):
return []
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'
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-05-14 05:48:56 +08:00
def find_cppcheck():
cppcheck_exe = 'cppcheck'
if not exe_exists([cppcheck_exe, '-h']):
cppcheck_exe = None
return cppcheck_exe
def is_osx():
return platform.system().lower() == 'darwin'
def is_windows():
return platform.system().lower() == 'windows'
2013-07-04 23:02:44 +08:00
def is_debianlike():
try:
open('/etc/debian_version', 'r')
return True
except FileNotFoundError:
return False
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']
cpp_suffixes = ['cc', 'cpp', 'cxx', 'hh', 'hpp', 'hxx']
c_suffixes = ['c']
clike_suffixes = c_suffixes + cpp_suffixes
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
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')
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)
2013-02-25 04:44:01 +08:00
except IOError:
self.coredata = coredata.CoreData(options)
# 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++']
2013-04-20 04:59:06 +08:00
self.default_static_linker = 'ar'
self.vs_static_linker = 'lib'
2012-12-30 00:38:22 +08:00
if is_windows():
self.exe_suffix = 'exe'
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 = ''
if is_osx():
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'
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)
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 detect_c_compiler(self):
evar = 'CC'
if evar in os.environ:
compilers = os.environ[evar].split()
ccache = []
else:
compilers = self.default_c
ccache = self.detect_ccache()
for compiler in compilers:
try:
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,
stderr=subprocess.DEVNULL)
except OSError:
continue
out = p.communicate()[0]
out = out.decode()
if (out.startswith('cc ') or out.startswith('gcc')) and \
'Free Software Foundation' in out:
return GnuCCompiler(ccache + [compiler])
if 'apple' in out and 'Free Software Foundation' in out:
return GnuCCompiler(ccache + [compiler])
if (out.startswith('clang')):
return ClangCCompiler(ccache + [compiler])
if 'Microsoft' in out:
return VisualStudioCCompiler([compiler])
raise EnvironmentException('Unknown compiler(s): "' + ', '.join(compilers) + '"')
2013-01-02 06:54:32 +08:00
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-06-03 03:31:10 +08:00
def detect_cpp_compiler(self):
evar = 'CXX'
2013-04-20 03:11:20 +08:00
if evar in os.environ:
compilers = os.environ[evar].split()
2013-04-20 03:11:20 +08:00
ccache = []
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()
for compiler in compilers:
basename = os.path.basename(compiler).lower()
if basename == 'cl' or basename == 'cl.exe':
arg = '/?'
else:
arg = '--version'
try:
p = subprocess.Popen([compiler, arg],
stdout=subprocess.PIPE,
stderr=subprocess.DEVNULL)
except OSError:
continue
out = p.communicate()[0]
out = out.decode()
if (out.startswith('c++ ') or out.startswith('g++')) and \
'Free Software Foundation' in out:
2013-06-03 03:31:10 +08:00
return GnuCPPCompiler(ccache + [compiler])
2013-04-20 03:11:20 +08:00
if 'apple' in out and 'Free Software Foundation' in out:
2013-06-03 03:31:10 +08:00
return GnuCPPCompiler(ccache + [compiler])
2013-04-20 03:11:20 +08:00
if out.startswith('clang'):
2013-06-03 03:31:10 +08:00
return ClangCPPCompiler(ccache + [compiler])
2013-04-20 03:11:20 +08:00
if 'Microsoft' in out:
2013-06-03 03:31:10 +08:00
return VisualStudioCPPCompiler([compiler])
2013-04-20 03:11:20 +08:00
raise EnvironmentException('Unknown compiler(s) "' + ', '.join(compilers) + '"')
2013-03-26 03:05:57 +08:00
2013-04-07 01:55:37 +08:00
def detect_objc_compiler(self):
exelist = self.get_objc_compiler_exelist()
try:
p = subprocess.Popen(exelist + ['--version'], stdout=subprocess.PIPE)
except OSError:
raise EnvironmentException('Could not execute ObjC compiler "%s"' % ' '.join(exelist))
out = p.communicate()[0]
out = out.decode()
if (out.startswith('cc ') or out.startswith('gcc')) and \
'Free Software Foundation' in out:
return GnuObjCCompiler(exelist)
2013-04-09 05:11:58 +08:00
if 'apple' in out and 'Free Software Foundation' in out:
return GnuObjCCompiler(exelist)
2013-04-07 01:55:37 +08:00
raise EnvironmentException('Unknown compiler "' + ' '.join(exelist) + '"')
2013-06-03 03:31:10 +08:00
def detect_objcpp_compiler(self):
exelist = self.get_objcpp_compiler_exelist()
2013-04-07 03:03:16 +08:00
try:
p = subprocess.Popen(exelist + ['--version'], stdout=subprocess.PIPE)
except OSError:
raise EnvironmentException('Could not execute ObjC++ compiler "%s"' % ' '.join(exelist))
out = p.communicate()[0]
out = out.decode()
if (out.startswith('c++ ') or out.startswith('g++')) and \
'Free Software Foundation' in out:
2013-06-03 03:31:10 +08:00
return GnuObjCPPCompiler(exelist)
2013-04-09 05:11:58 +08:00
if 'apple' in out and 'Free Software Foundation' in out:
2013-06-03 03:31:10 +08:00
return GnuObjCPPCompiler(exelist)
2013-04-07 03:03:16 +08:00
raise EnvironmentException('Unknown compiler "' + ' '.join(exelist) + '"')
2013-04-20 04:59:06 +08:00
def detect_static_linker(self, compiler):
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
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
def get_build_dir(self):
return self.build_dir
def get_exe_suffix(self):
return self.exe_suffix
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):
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'
2013-03-10 04:42:01 +08:00
unixdirs += glob('/usr/lib/' + plat + '*')
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