我正在尝试在 Debian 挤压、python 2.6.6 上使用 waf 构建最简单的 Boost.Asio 教程示例“timer1”(它在 timer.cpp 中)。
root@ds:/var/timer# ls
timer.cpp 脚本
wscript 这里是 waf 的配置:
#! /usr/bin/env python
top = '.'
out = '.'
def options(opt):
opt.load('compiler_cxx')
def configure(conf):
conf.load('compiler_cxx')
conf.env['LINKFLAGS'] = '--verbose -L/usr/local/lib -lboost_system'
def build(bld):
tgen = bld.new_task_gen()
tgen.features = 'cxx cxxprogram'
tgen.source = 'timer.cpp'
tgen.target = 'timer'
tgen.includes = '.'
tgen.update_outputs = True
waf configure
是成功的。
但waf --verbose build
以错误结束(我在下面插入<*>
以标记一行)
Waf: Entering directory `/var/timer'
[1/2] cxx: timer.cpp -> timer.cpp.1.o
[2/2] cxxprogram: timer.cpp.1.o -> timer
timer.cpp.1.o: In function `__static_initialization_and_destruction_0(int, int)':
timer.cpp:(.text+0x103): undefined reference to `boost::system::generic_category()'
timer.cpp:(.text+0x10f): undefined reference to `boost::system::generic_category()'
...
Build failed
-> task in 'timer' failed (exit status 1):
{task 38446736: cxxprogram timer.cpp.1.o -> timer}
<*>
['/usr/bin/g++', '--verbose -L/usr/local/lib -lboost_system', 'timer.cpp.1.o', '-o', '/var/timer/timer', '-Wl,-Bstatic', '-Wl,-Bdynamic']
似乎 waf 调用的 gcc 在链接期间没有找到 boost_system 库。
但是,如果我在没有 waf 的情况下通过 gcc 构建示例,一切正常。
root@ds:/var/timer# /usr/bin/g++ --verbose -I/var/flake/lib/boost timer.cpp -c -o timer.cpp.1.o
...
<**>
root@ds:/var/timer# /usr/bin/g++ --verbose -L/usr/local/lib -lboost_system timer.cpp.1.o -o timer -Wl,-Bstatic -Wl,-Bdynamic
...
root@ds:/var/timer# ls
timer.cpp timer.cpp.1.o timer wscript
如您所见,waf 使用的命令行(由 标记<*>
)与由 标记的命令行相同<**>
。但结果完全不同。为什么?我怎么能强迫 waf 建造那个东西?这里的解决方案对我也不起作用。也试过
...
opt.tool_options('boost')
...
conf.load('compiler_cxx boost')
conf.check_boost()
...
tgen.uselib = 'BOOST'
...
但没有任何影响
还有一个问题。的输出gcc --verbose
比 的输出广泛得多waf --verbose
。在我看来,该verbose
选项必须强制 waf 显示所有此类信息。为什么那不是真的?waf 选项 -vvv 也不显示此信息。