Shared libraries are libraries that are loaded by programs when they start.
I know .o are object files, .a are static libraries and .so are dynamic libraries? What is their physical significance? …
c++ c shared-libraries static-librariesI have a program do so some graphics. When I run it interactively, I want it to use OpenGL from …
windows dll shared-libraries library-pathI have a problem linking some shared library with g++. It gives me a warning like: hidden symbol XXX in …
c++ gcc linker shared-libraries elfI have some doubt about how do programs use shared library. When I build a shared library ( with -shared -fPIC …
c++ c shared-libraries fpicFollowing question How do applications resolve to different versions of shared libraries at run time?, I wondered how to specify …
linux gcc shared-librariesSpecifically: Is it assured somehow that all versions of glibc 2.x are binary compatible? If not, how can I run …
installation shared-libraries glibc binary-compatibilityI need a tool to show all the shared library dependencies in some graphical way, not just with ldd on …
linux unix shared-libraries dependency-walkerI am compiling using arm-linux-gnueabi-g++ version 4.7.3. I have the arm-linux-gnueabi libraries installed at location: /usr/arm-linux-gnueabi/lib, it contains libdl.…
c++ linux arm shared-libraries undefined-referenceI am getting undefined symbol error while loading library dynamically. Here is my code snippet that generates this error : int …
c++ linux shared-libraries dynamic-loadingI'm trying to use Valgrind on a program that I'm working on, but Valgrind generates a bunch of errors for …
shared-libraries valgrind suppress-warnings