I use -nostdinc++ as an argument to g++ in order to use my implementation of the std library, but I would like to include first my include path and then the standard library.
For example if the vector library is missing from my implementation then I would like the compiler to search in the std lib location.
How can I do this?