Hello,
I want to use a different STL with g++ instead of its default libstdc++. What is the easiest way to do this?
I found -nostdinc++ flag which inhibits g++ from looking for its STL headers but this is only a compile time thing. It will still make g++ link against its own STL.
So I need to find a way to inhibit the linking.
Thanks!