Skip to content
Advertisement

How can I ask GCC to use a different standard library?

I have a debug version of libstdc++ 6 in /usr/lib/debug/usr/lib/x86_64-linux-gnu/. I would like to tell gcc/g++ to use this library instead of the standard library version without debug symbols. I tried using -nostdlib and passing the library path explicitly with -L, but get linking errors such as

JavaScript

It seems that the library version (according to the file name) is the same for the debug and release builds of libstdc++ installed on my system:

JavaScript

Advertisement

Answer

You should make use of LD_LIBRARY_PATH environment variable like:

JavaScript

This variable can be used to change the dynamic linkers search paths so, instead of searching for libstdc++ in the system’s library paths, libstdc++ will be searched along LD_LIBRARY_PATH.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement