2011-09-10 11:13:51 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# encoding: utf-8
|
|
|
|
# Matthias Jahn jahn dôt matthias ât freenet dôt de, 2007 (pmarat)
|
|
|
|
|
|
|
|
"""
|
|
|
|
Try to detect a C compiler from the list of supported compilers (gcc, msvc, etc)::
|
|
|
|
|
|
|
|
def options(opt):
|
|
|
|
opt.load('compiler_c')
|
|
|
|
def configure(cnf):
|
|
|
|
cnf.load('compiler_c')
|
|
|
|
def build(bld):
|
|
|
|
bld.program(source='main.c', target='app')
|
|
|
|
|
|
|
|
The compilers are associated to platforms in :py:attr:`waflib.Tools.compiler_c.c_compiler`. To register
|
|
|
|
a new C compiler named *cfoo* (assuming the tool ``waflib/extras/cfoo.py`` exists), use::
|
|
|
|
|
2014-02-10 09:27:11 +01:00
|
|
|
from waflib.Tools.compiler_c import c_compiler
|
|
|
|
c_compiler['win32'] = ['cfoo', 'msvc', 'gcc']
|
|
|
|
|
2011-09-10 11:13:51 +02:00
|
|
|
def options(opt):
|
|
|
|
opt.load('compiler_c')
|
|
|
|
def configure(cnf):
|
|
|
|
cnf.load('compiler_c')
|
|
|
|
def build(bld):
|
|
|
|
bld.program(source='main.c', target='app')
|
|
|
|
|
|
|
|
Not all compilers need to have a specific tool. For example, the clang compilers can be detected by the gcc tools when using::
|
|
|
|
|
|
|
|
$ CC=clang waf configure
|
|
|
|
"""
|
|
|
|
|
2015-10-11 11:32:27 +02:00
|
|
|
import re
|
2011-09-10 11:13:51 +02:00
|
|
|
from waflib.Tools import ccroot
|
2015-10-11 11:32:27 +02:00
|
|
|
from waflib import Utils
|
2011-09-10 11:13:51 +02:00
|
|
|
from waflib.Logs import debug
|
|
|
|
|
|
|
|
c_compiler = {
|
2021-12-13 21:27:46 +01:00
|
|
|
'win32': ['msvc', 'gcc', 'clang'],
|
|
|
|
'cygwin': ['gcc', 'clang'],
|
|
|
|
'darwin': ['clang', 'gcc'],
|
|
|
|
'aix': ['xlc', 'gcc', 'clang'],
|
|
|
|
'linux': ['gcc', 'clang', 'icc'],
|
|
|
|
'sunos': ['suncc', 'gcc'],
|
|
|
|
'irix': ['gcc', 'irixcc'],
|
|
|
|
'hpux': ['gcc'],
|
|
|
|
'osf1V': ['gcc'],
|
|
|
|
'gnu': ['gcc', 'clang'],
|
|
|
|
'java': ['gcc', 'msvc', 'clang', 'icc'],
|
|
|
|
'gnukfreebsd': ['gcc', 'clang'],
|
|
|
|
'default': ['clang', 'gcc'],
|
2011-09-10 11:13:51 +02:00
|
|
|
}
|
|
|
|
"""
|
2016-06-25 21:30:32 +02:00
|
|
|
Dict mapping platform names to Waf tools finding specific C compilers::
|
2011-09-10 11:13:51 +02:00
|
|
|
|
|
|
|
from waflib.Tools.compiler_c import c_compiler
|
|
|
|
c_compiler['linux'] = ['gcc', 'icc', 'suncc']
|
|
|
|
"""
|
|
|
|
|
2014-02-10 09:27:11 +01:00
|
|
|
def default_compilers():
|
|
|
|
build_platform = Utils.unversioned_sys_platform()
|
|
|
|
possible_compiler_list = c_compiler.get(build_platform, c_compiler['default'])
|
|
|
|
return ' '.join(possible_compiler_list)
|
|
|
|
|
2011-09-10 11:13:51 +02:00
|
|
|
def configure(conf):
|
|
|
|
"""
|
2016-06-25 21:30:32 +02:00
|
|
|
Detects a suitable C compiler
|
|
|
|
|
|
|
|
:raises: :py:class:`waflib.Errors.ConfigurationError` when no suitable compiler is found
|
2011-09-10 11:13:51 +02:00
|
|
|
"""
|
2016-06-25 21:30:32 +02:00
|
|
|
try:
|
|
|
|
test_for_compiler = conf.options.check_c_compiler or default_compilers()
|
|
|
|
except AttributeError:
|
|
|
|
conf.fatal("Add options(opt): opt.load('compiler_c')")
|
2014-01-25 18:47:15 +01:00
|
|
|
|
|
|
|
for compiler in re.split('[ ,]+', test_for_compiler):
|
2011-09-10 11:13:51 +02:00
|
|
|
conf.env.stash()
|
2014-01-25 18:47:15 +01:00
|
|
|
conf.start_msg('Checking for %r (C compiler)' % compiler)
|
2011-09-10 11:13:51 +02:00
|
|
|
try:
|
|
|
|
conf.load(compiler)
|
|
|
|
except conf.errors.ConfigurationError as e:
|
|
|
|
conf.env.revert()
|
|
|
|
conf.end_msg(False)
|
2016-03-19 14:46:22 +01:00
|
|
|
debug('compiler_c: %r', e)
|
2011-09-10 11:13:51 +02:00
|
|
|
else:
|
2016-06-25 21:30:32 +02:00
|
|
|
if conf.env.CC:
|
2011-09-10 11:13:51 +02:00
|
|
|
conf.end_msg(conf.env.get_flat('CC'))
|
2016-06-25 21:30:32 +02:00
|
|
|
conf.env.COMPILER_CC = compiler
|
2016-03-21 22:59:13 +01:00
|
|
|
conf.env.commit()
|
2011-09-10 11:13:51 +02:00
|
|
|
break
|
2016-03-21 22:59:13 +01:00
|
|
|
conf.env.revert()
|
2011-09-10 11:13:51 +02:00
|
|
|
conf.end_msg(False)
|
|
|
|
else:
|
2014-01-25 18:47:15 +01:00
|
|
|
conf.fatal('could not configure a C compiler!')
|
2011-09-10 11:13:51 +02:00
|
|
|
|
|
|
|
def options(opt):
|
|
|
|
"""
|
2016-06-25 21:30:32 +02:00
|
|
|
This is how to provide compiler preferences on the command-line::
|
2011-09-10 11:13:51 +02:00
|
|
|
|
|
|
|
$ waf configure --check-c-compiler=gcc
|
|
|
|
"""
|
2014-02-10 09:27:11 +01:00
|
|
|
test_for_compiler = default_compilers()
|
2011-09-10 11:13:51 +02:00
|
|
|
opt.load_special_tools('c_*.py', ban=['c_dumbpreproc.py'])
|
2014-01-25 18:47:15 +01:00
|
|
|
cc_compiler_opts = opt.add_option_group('Configuration options')
|
2014-02-10 09:27:11 +01:00
|
|
|
cc_compiler_opts.add_option('--check-c-compiler', default=None,
|
2014-01-25 18:47:15 +01:00
|
|
|
help='list of C compilers to try [%s]' % test_for_compiler,
|
2011-09-10 11:13:51 +02:00
|
|
|
dest="check_c_compiler")
|
2014-02-10 09:27:11 +01:00
|
|
|
|
2011-09-10 11:13:51 +02:00
|
|
|
for x in test_for_compiler.split():
|
|
|
|
opt.load('%s' % x)
|
|
|
|
|