Top "Shared-libraries" questions

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

How I can find function in shared object files using objdump and bash functions in linux?

I've got a folder in linux, which is contained several shared object files (*.so). How I can find function in …

c linux bash shared-libraries objdump
How can I tell, with something like objdump, if an object file has been built with -fPIC?

How can I tell, with something like objdump, if an object file has been built with -fPIC?

gcc shared-libraries objdump fpic
What is the difference between LD_LIBRARY_PATH and -L at link time?

I'm having problems with LD_LIBRARY_PATH at link time (this question has nothing to do with run time). The …

linux gcc linker shared-libraries
Link a static library to a shared one during build?

I have a problem building a shared library with GCC/Linux. Currently this shared library is created with GCC/libtool …

linux gcc shared-libraries static-libraries libtool
What exactly does `-rdynamic` do and when exactly is it needed?

What exactly does -rdynamic (or --export-dynamic at the linker level) do and how does it relate to symbol visibility as …

c gcc shared-libraries elf dynamic-loading
Is it OK to delete older versions of Windows 10 SDK?

I just installed the latest SDK(10.0.10586.0) and was wondering if I can delete the libraries from the older Windows 10 SDKs(10.0.10240.0 …

windows sdk shared-libraries
error while loading shared libraries libpng16

I am trying to compile and run this code under ubuntu 14.04. I downloaded and installed libpng version 1.6.12. I am able …

c shared-libraries libpng
OpenJDK 64-Bit Server VM warning: You have loaded library which might have disabled stack guard

can any one help me with this error message . while try to compile project in eclipse using jNetpcap API I …

java eclipse debian libpcap shared-libraries
Limiting visibility of symbols when linking shared libraries

Some platforms mandate that you provide a list of a shared library's external symbols to the linker. However, on most …

linker shared-libraries gnu linker-scripts
How to call a function from a shared library?

What is the easiest and safest way to call a function from a shared library / dll? I am mostly interested …

c++ linux dll shared-libraries dynamic-linking