Menu of Filip Rooms' site
Home Sourcecode CV Favorite Links All Links Notes Pictures
Valid HTML 4.01!
Valid CSS!
Free Software Magazine
Free Software Daily

Linux related

LD_LIBRARY_PATH vs PKG_CONFIG_PATH

LD_LIBRARY_PATH is an environment variable that says where to look for dynamically linked libraries in non-standard locations. Is set in bash with

export LD_LIBRARY_PATH=/path/lib/:$LD_LIBRARY_PATH

Adjust the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them. This is usually something like /path/to/lib/lib/pkgconfig/

RPATH encodes a path to shared libraries into the header of an executable (or another shared library).

LD_LIBRARY_PATH vs PKG_CONFIG_PATH


Windows host system


Visual Studio