Top "Shared-libraries" questions

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

How to create a shared library (.so) in an automake script?

Given some source file test.cpp I would like to create a shared library libtest.so . I am trying to …

c++ shared-libraries autotools automake
Can't find libavcodec when running ./configure for vlc

I am trying to run './configure' for vlc on ubuntu 10.04. But it can't find libavcode libraries for some reason. …

linux gcc shared-libraries vlc
Receive "undefined symbol" error when loading library with dlopen

I'm writing some code that uses dynamic shared libraries as plugins. My command line for building the shared libraries looks …

shared-libraries dlopen
extending default lib search path in ubuntu

How can i extend default lib search path in ubuntu(in a way that it is also persistent) ? no, I …

linux shared-libraries ubuntu-11.04
How do I find out which functions of a shared object are used by a program or an other library?

How do I find out which functions of a shared object are used by a program or an other library? …

c linux shared-libraries elf objdump
Shared library in Go?

Is it possible to create a Shared Library (.so) using Go? UPDATED: created an "issue" for it.

shared-libraries go
Enabling debug symbols in shared library using GCC

I am creating a shared library using gcc and suspect that there may be some memory leaks from the shared …

c gcc compilation shared-libraries debug-symbols
What is __i686.get_pc_thunk.bx? Why do we need this call?

When I disassemble my small function, I happened to see this call call 0xf60d2f47 <__i686.get_pc_…

c assembly shared-libraries glibc
Stripping linux shared libraries

We've recently been asked to ship a Linux version of one of our libraries, previously we've developed under Linux and …

c++ linux gcc strip shared-libraries
Can I use shared library created in C++ in a C program?

I am creating programs using C. However, I require to use a lot of libraries that have API's only for …

c++ c compilation shared-libraries