Top "Shared-libraries" questions

Shared libraries are libraries that are loaded by programs when they start.

Compile with older libc (version `GLIBC_2.14' not found)

I have to compile a program on a current ubuntu (12.04). This program should then run on a cluster using CentOS …

gcc linker shared-libraries
Error loading shared libraries

I'm running eclipse on Ubuntu using a g++ compiler and I'm trying to run a sample program that utilizes xerces. …

shared-libraries shared
Difference between .a .o and .lo file

What is the difference between .a .o and .lo file in C?

c++ c shared-libraries libraries
Automatically executed functions when loading shared libraries

When loading shared libraries in Windows, LoadLibrary() call causes DllMain in library to execute for each new process and thread …

posix shared-libraries d dlopen
What is the 'soname' option for building shared libraries for?

I learned the "Program Library HOWTO". It mention that using soname to manage the version like follow. gcc -shared -fPIC …

linux gcc shared-libraries
Call Go functions from C

I am trying to create a static object written in Go to interface with a C program (say, a kernel …

c shared-libraries go dynamic-linking
dyld: Library not loaded, Reason: image not found

I used gdb normally until this week. Now running gdb I see: (gdb) r Starting program: /Volumes/MyProg dyld: Library …

macos gdb shared-libraries
Android - Could not find google-play-services_lib.apk! error

I am trying to use the new Google Play Services for Google Plus integration from this link: http://ankitthakkar90.blogspot.…

android service shared-libraries runtime-error
Force GCC to notify about undefined references in shared libraries

I have a shared library that is linked with another (third-party) shared library. My shared library is then loaded using …

c++ shared-libraries dynamic-linking
list exported functions from dll with ctypes

Is there any way to know which functions are exported from the dll through python foreign function library ctypes? And …

python dll shared-libraries ctypes