Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/343.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 如何确定waf选择的工具?_Python_Build_Build Process_Waf - Fatal编程技术网

Python 如何确定waf选择的工具?

Python 如何确定waf选择的工具?,python,build,build-process,waf,Python,Build,Build Process,Waf,我如何确定waf选择哪个特定工具作为“cxx_编译器”等? 免费范例: def configure(ctx): print('Running ' + ctx.cmd + ' in ' + ctx.path.abspath() ) ctx.load('compiler_c') ctx.load('compiler_cxx') def build(ctx): print('Running ' + ctx.cmd + ' in ' + ctx.path.abspath() )

我如何确定waf选择哪个特定工具作为“cxx_编译器”等? 免费范例:

def configure(ctx):
   print('Running ' + ctx.cmd + ' in ' + ctx.path.abspath() )
   ctx.load('compiler_c')
   ctx.load('compiler_cxx')

def build(ctx):
   print('Running ' + ctx.cmd + ' in ' + ctx.path.abspath() )
   # Here print which C++ compiler was chosen
   print 'Building cpp files with %s' % WHAT_GOES_HERE
将为您提供:

D:\temp>waf.bat configure build --check-c-compiler=gcc --check-cxx-compiler=g++
Setting top to                           : D:\temp
Setting out to                           : D:\temp\build
Checking for 'gcc' (c compiler)          : c:\tools\gcc\bin\gcc.exe
Checking for 'g++' (c++ compiler)        : c:\tools\gcc\bin\g++.exe
'configure' finished successfully (0.191s)
Waf: Entering directory `D:\temp\build'
Compiler is CC_NAME  gcc  CC  ['c:\\tools\\gcc\\bin\\gcc.exe']
Compiler is CXX_NAME gcc  CXX ['c:\\tools\\gcc\\bin\\g++.exe']
Waf: Leaving directory `D:\temp\build'
'build' finished successfully (0.008s)
D:\temp>waf.bat configure build --check-c-compiler=gcc --check-cxx-compiler=g++
Setting top to                           : D:\temp
Setting out to                           : D:\temp\build
Checking for 'gcc' (c compiler)          : c:\tools\gcc\bin\gcc.exe
Checking for 'g++' (c++ compiler)        : c:\tools\gcc\bin\g++.exe
'configure' finished successfully (0.191s)
Waf: Entering directory `D:\temp\build'
Compiler is CC_NAME  gcc  CC  ['c:\\tools\\gcc\\bin\\gcc.exe']
Compiler is CXX_NAME gcc  CXX ['c:\\tools\\gcc\\bin\\g++.exe']
Waf: Leaving directory `D:\temp\build'
'build' finished successfully (0.008s)