Reputation: 29813
What is the latest version of gcc that still uses libstdc++.so.5 (as opposed to libstdc++.so.6)?
Upvotes: 6
Views: 3500
Reputation: 1847
In the Gnu ABI policy, you can find this:
So unless they didn't list a version, gcc-3.3.3 is the one you want.
Upvotes: 7
Reputation: 29813
After searching all over for the answer, and failing to find it. I compiled several different versions and the last version to use libstdc++.so.5 is version 3.3 (more specifically 3.3.6). Version 3.4.X uses libstdc++.so.6.
Upvotes: 4
Reputation: 14526
I believe that libstdc++.so.5 was used for all GCC versions 3.X, and libstdc++.so.6 was used for GCC 4.X. I'm not sure on this, but I do know that libstdc++2 was used up until 3.0, which used libstdc++5, and that 4.0 uses libstdc++6.
Upvotes: -1