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 (g++, msvc, etc)::
|
|
|
|
|
|
|
|
def options(opt):
|
|
|
|
opt.load('compiler_cxx')
|
|
|
|
def configure(cnf):
|
|
|
|
cnf.load('compiler_cxx')
|
|
|
|
def build(bld):
|
|
|
|
bld.program(source='main.cpp', target='app')
|
|
|
|
|
|
|
|
The compilers are associated to platforms in :py:attr:`waflib.Tools.compiler_cxx.cxx_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_cxx import cxx_compiler
|
|
|
|
cxx_compiler['win32'] = ['cfoo', 'msvc', 'gcc']
|
|
|
|
|
2011-09-10 11:13:51 +02:00
|
|
|
def options(opt):
|
|
|
|
opt.load('compiler_cxx')
|
|
|
|
def configure(cnf):
|
|
|
|
cnf.load('compiler_cxx')
|
|
|
|
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::
|
|
|
|
|
|
|
|
$ CXX=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
|
|
|
|
|
|
|
|
cxx_compiler = {
|
2014-01-25 22:12:29 +01:00
|
|
|
'win32': ['msvc', 'g++', 'clang++'],
|
2011-09-10 11:13:51 +02:00
|
|
|
'cygwin': ['g++'],
|
2014-01-25 22:12:29 +01:00
|
|
|
'darwin': ['clang++', 'g++'],
|
|
|
|
'aix': ['xlc++', 'g++', 'clang++'],
|
|
|
|
'linux': ['g++', 'clang++', 'icpc'],
|
2011-09-10 11:13:51 +02:00
|
|
|
'sunos': ['sunc++', 'g++'],
|
|
|
|
'irix': ['g++'],
|
|
|
|
'hpux': ['g++'],
|
2015-03-14 03:02:01 +01:00
|
|
|
'osf1V': ['g++'],
|
2014-01-25 22:12:29 +01:00
|
|
|
'gnu': ['g++', 'clang++'],
|
|
|
|
'java': ['g++', 'msvc', 'clang++', 'icpc'],
|
2015-12-22 18:19:16 +01:00
|
|
|
'default': ['clang++', 'g++']
|
2011-09-10 11:13:51 +02:00
|
|
|
}
|
|
|
|
"""
|
2014-01-25 18:47:15 +01:00
|
|
|
Dict mapping the platform names to Waf tools finding specific C++ compilers::
|
2011-09-10 11:13:51 +02:00
|
|
|
|
|
|
|
from waflib.Tools.compiler_cxx import cxx_compiler
|
|
|
|
cxx_compiler['linux'] = ['gxx', 'icpc', 'suncxx']
|
|
|
|
"""
|
|
|
|
|
2014-02-10 09:27:11 +01:00
|
|
|
def default_compilers():
|
|
|
|
build_platform = Utils.unversioned_sys_platform()
|
|
|
|
possible_compiler_list = cxx_compiler.get(build_platform, cxx_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_cxx_compiler or default_compilers()
|
|
|
|
except AttributeError:
|
|
|
|
conf.fatal("Add options(opt): opt.load('compiler_cxx')")
|
2011-09-10 11:13:51 +02:00
|
|
|
|
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_cxx: %r', e)
|
2011-09-10 11:13:51 +02:00
|
|
|
else:
|
2016-06-26 00:16:51 +02:00
|
|
|
if conf.env.CXX:
|
2011-09-10 11:13:51 +02:00
|
|
|
conf.end_msg(conf.env.get_flat('CXX'))
|
2016-06-25 21:30:32 +02:00
|
|
|
conf.env.COMPILER_CXX = 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-cxx-compiler=gxx
|
|
|
|
"""
|
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('cxx_*.py')
|
2014-01-25 18:47:15 +01:00
|
|
|
cxx_compiler_opts = opt.add_option_group('Configuration options')
|
2014-02-10 09:27:11 +01:00
|
|
|
cxx_compiler_opts.add_option('--check-cxx-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_cxx_compiler")
|
|
|
|
|
|
|
|
for x in test_for_compiler.split():
|
|
|
|
opt.load('%s' % x)
|
|
|
|
|