在CentOS 7上构建Boost的调试版本 [英] Build debug version of Boost on CentOS 7

查看:87
本文介绍了在CentOS 7上构建Boost的调试版本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用以下命令在CentOS 7上构建Boost的调试版本:

I'm trying to build a debug version of Boost on CentOS 7 with the following command:

./b2 runtime-link =共享的runtime-debugging = on variant = debug link =共享的安装

但是,在生成的库文件的名称中没有看到 g d ABI标志.我做错什么了吗?在Windows上构建时一切正常.

However, I don't see the g nor d ABI flag in the names of the generated library files. Have I done something wrong? Everything works just fine when building on Windows.

推荐答案

我认为应该可以.

如果像您一样进行构建,并使用objdump检查生成的库之一

If building like you do and inspecting one of the resulting libs with objdump

objdump --syms libboost_wave.so | grep debug

我知道

...
0000000000000000 l    d  .debug_aranges 0000000000000000              .debug_aranges
0000000000000000 l    d  .debug_info    0000000000000000              .debug_info
0000000000000000 l    d  .debug_abbrev  0000000000000000              .debug_abbrev
0000000000000000 l    d  .debug_line    0000000000000000              .debug_line
0000000000000000 l    d  .debug_str     0000000000000000              .debug_str
0000000000000000 l    d  .debug_ranges  0000000000000000              .debug_ranges
...

如果构建时没有"runtime-debugging = on variant = debug",则相应结果不会导致与"grep debug"匹配.

If building without "runtime-debugging=on variant=debug" the corresponding result do not result in any matches for "grep debug".

这篇关于在CentOS 7上构建Boost的调试版本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆