Reputation: 411
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
Upvotes: 1
Views: 752
Reputation: 179907
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.
Upvotes: 1