I want to use another STL with g ++ instead of the standard libstdC ++. What is the easiest way to do this?
I found the -nostdinC ++ flag that prevents g ++ from looking for its STL headers, but this is just compilation time. He will still make a g ++ link against his own STL.
So I need to find a way to block the binding.
Thanks!
source
share