如何分解 C++在海湾合作委员会 2.96
当我使用 cxxabi.h
编译代码时,出现以下错误:
$g++ -g -o bt bt.cpp linux.cpp -rdynamic -fnew-abi
cc1plus:gcc-2.96-RH 不支持-fnew-abi
[PS: 我需要在源代码中执行此操作,而不是 c++filt bin 工具!]
提前致谢。
DMA
When I compile the code with cxxabi.h
, I got this error:
$g++ -g -o bt bt.cpp linux.cpp -rdynamic -fnew-abi
cc1plus: -fnew-abi not supported in gcc-2.96-RH
[PS: I need do this in the source code, not c++filt bin tool!]
Thanks in advance.
Dma
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
-fnew-abi
标志被标记为实验性的,并且可能会发生未记录的更改。你为什么使用它?很可能(始终如一!)删除它会让你重建一切。The
-fnew-abi
flag was marked as experimental and subject to undocumented changes. Why are you using it? It's likely that (consistently!) removing it will allow you to rebuild everything.