I am trying to compile a library using a specific version of libstdc++.so, not the system one.
The compilation script uses waf.
I tried to export LD_LIBRARY_PATH=<path/to/directory/of/my/libstdc++.so>.
Since I use fish, I have also tried with set --export LD_LIBRARY_PATH <path/to/directory/of/my/libstdc++.so> and LD_LIBRARY_PATH=<path/to/directory/of/my/libstdc++.so> waf
However, until now it still links against the system libstdc++.so
Anyone knows how to force the usage of my libstdc++.so?