clangxx

Detect the Clang++ C++ compiler

waflib.Tools.clangxx.find_clangxx(conf)[source]

Configuration Method bound to waflib.Configure.ConfigurationContext

Find the program clang++, and execute it to ensure it really is clang++

waflib.Tools.clangxx.conf(f)

Decorator: attach new configuration functions to waflib.Build.BuildContext and waflib.Configure.ConfigurationContext. The methods bound will accept a parameter named ‘mandatory’ to disable the configuration errors:

def configure(conf):
        conf.find_program('abc', mandatory=False)
Parameters:f (function) – method to bind

Previous topic

clang

Next topic

compiler_c

This Page