setenv LD_LIBRARY_PATH “/path/to/lib/dir:$LD_LIBRARY_PATH” export LD_LIBRARY_PATH=”/path/to/lib/dir:$LD_LIBRARY_PATH” echo /path/to/lib/dir >> /etc/ld.so.conf lddconfig For help, with either features of dynamic linking or the location of the config file on your system, consult the […]
Continue reading »Tag: linux
Query process information in C++ on linux and/or unix.
I have a created a program that forks off another program, and maintains status information about each process. std::map::iterator it; std::map tmpDisplay = Displays; for (it = tmpDisplay.begin(); it != […]
Continue reading »