Y
Hacker News
new
|
ask
|
show
|
jobs
by
foota
2325 days ago
Imo this is probably in part because you can mix the two more easily? I imagine you could link again C++ 2003 code compiled with a compiler understanding the new ABI?
1 comments
zelly
2325 days ago
Yes you could[1], but you couldn't link C++11 object code with a C++03 compiler.
[1] with a compiler flag use_cxx11_abi=0 or something
link
gpderetta
2325 days ago
If the c++11 object code does not expose any c++11 specific features in its abi/api you should be able to.
link
[1] with a compiler flag use_cxx11_abi=0 or something