Top "Shared-libraries" questions

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

How to create a shared library with cmake?

I have written a library that I used to compile using a self-written Makefile, but now I want to switch …

c++ compilation cmake shared-libraries
How do i find out what all symbols are exported from a shared object?

I have a shared object(dll). How do i find out what all symbols are exported from that?

linux shared-libraries
INSTALL_FAILED_MISSING_SHARED_LIBRARY error in Android

When I am trying to run an android application which uses Google API I get the following error [2009-07-11 11:46:43 …

android google-maps shared-libraries failed-installation
Build .so file from .c file using gcc command line

I'm trying to create a hello world project for Linux dynamic libraries (.so files). So I have a file hello.…

c linux gcc shared-libraries
Compilation fails with "relocation R_X86_64_32 against `.rodata.str1.8' can not be used when making a shared object"

I'm trying to compile this source code from the makefile in a VPS, but its not working. The VPS is …

c++ linux gcc linker shared-libraries
Importing from a relative path in Python

I have a folder for my client code, a folder for my server code, and a folder for code that …

python python-3.x import shared-libraries relative-path
How to specify non-default shared-library path in GCC Linux? Getting "error while loading shared libraries" when running

There is a laptop on which I have no root privilege. onto the machine I have a library installed using …

gcc linker shared-libraries
ld cannot find -l<library>

I am having trouble installing pyipopt on ubuntu 12.04. During linking, I receive the error: /usr/bin/ld: cannot find -lcoinhsl …

gcc ubuntu linker shared-libraries ld
How do you find what version of libstdc++ library is installed on your linux machine?

I found the following command: strings /usr/lib/libstdc++.so.6 | grep GLIBC from here. It seems to work but this …

c++ linux shared-libraries
What's the difference between .so, .la and .a library files?

I know an .so file is a kind of dynamic library (lots of threads can share such libraries so there …

linux memory-management static-libraries ld shared-libraries