Tagged Questions
The dynamic-linking tag has no wiki summary.
44
votes
11answers
12k views
Static linking vs dynamic linking
Are there any compelling performance reasons to choose static linking over dynamic linking or visa versa in certain situations? I've heard or read the following, but I don't know enough on the subject ...
20
votes
1answer
626 views
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 module or something).
I have found documentation on calling C functions from Go, but I haven't found ...
15
votes
8answers
565 views
Simulate static abstract and dynamic linking on static method call in Java
Introduction
As a disclaimer, I'v read Why can't static methods be abstract in Java and, even if I respectfully disagree with the accepted answer about a "logical contradiction", I don't want any ...
14
votes
5answers
590 views
Understanding how dynamic linking works on UNIX
Consider we have the following situation:
a program named program which depends dynamically on libfoo.so
libfoo.so that depends on nothing (well, it depends on libstdc++ and stuff but I guess we can ...
13
votes
3answers
727 views
How to reduce default C++ memory consumption?
I have a server application written in C++. After startup, it uses about 480 KB of memory on x86 Linux (Ubuntu 8.04, GCC 4.2.4). I think 480 KB is an excessive amount of memory: the server isn't even ...
9
votes
5answers
3k views
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 dlopen in my application. All this works fine (assuming files are in the proper ...
8
votes
1answer
613 views
Why does gcc not implicitly supply the -fPIC flag when compiling static libraries on x86_64
I've had numerous problems compiling shared objects that link statically against static libraries. This problem only shows up on x84_64 platforms. When doing the same compilation work on x86_32 I do ...
8
votes
3answers
1k views
How lazy can C++ global initialization be?
I'm used to thinking of all initialization of globals/static-class-members as happening before the first line of main(). But I recently read somewhere that the standard allows initialization to happen ...
7
votes
2answers
142 views
mixing compiler
I am wondering if it is possible to link a c++ program compiled with gcc4.2 with a shared c++ library that is compiled in a later version like gcc4.5.
I've tried to do this, but have run into some ...
7
votes
2answers
276 views
linking two shared libraries with some of the same symbols
I am trying to link with two different shared libraries. Both libraries define some symbols that share a name but have different implementations. I can't seem to find a way to make each library use ...
7
votes
4answers
669 views
Linking : Static vs Dynamic
In my application I have 3 major parts:
Exe : an executable file
Lib_A : a library contains a singleton class and a base class for some calculations to be use in singleton
class
Lib_B : a ...
7
votes
4answers
211 views
What do linkers do?
I've always wondered. I know that compilers convert the code you write into binaries but what do linkers do? They've always been a mystery to me.
I roughly understand what 'linking' is. It is when ...
7
votes
5answers
297 views
Why creating DLLs instead of compiling everything to a one big executable?
I saw and done myself a lot of small products where a same piece of software is separated into one executable and several DLLs, and those DLLs are not just shared libraries done by somebody else, but ...
7
votes
4answers
916 views
C++ application - should I use static or dynamic linking for the libraries?
I am going to start a new C++ project that will rely on a series of libraries, including part of the Boost libraries, the log4cxx or the google logging library - and as the project evolves other ones ...
7
votes
3answers
973 views
Recommendation for C++ wrapper for cross platform dynamic library bindings (basically a lightweight, high performance COM or CORBA) (only in-proc is necessary)
We're developing an application that will have a plug-in "architecture" to allow consumers of the app to provide their own proprietary algorithms. (We will basically have a set of parsers and allow ...
6
votes
2answers
174 views
Why is fPIC absolutely necessary on 64 and not on 32bit platforms?
I recently received a:
...relocation R_X86_64_32 against `a local symbol' can not be used when making a shared object; recompile with -fPIC
error while trying to compile a program as a shared ...
6
votes
2answers
647 views
Overriding 'malloc' using the LD_PRELOAD mechanism
I'm trying to write a simple shared library that would log malloc calls to stderr (a sort of 'mtrace' if you will).
However, this is not working.
Here's what I do:
/* mtrace.c */
#include ...
6
votes
3answers
387 views
dlopen from memory?
I'm looking for a way to load generated object code directly from memory.
I understand that if I write it to a file, I can call dlopen to dynamically load its symbols and link them. However, this ...
6
votes
2answers
417 views
OpenGL on Linux: dlopen libGL.so
Most applications (and libraries) using OpenGL on Linux load libGL.so at runtime using dlopen API, instead of dynamically linking against it.
Why do they do this?
The only reason I can imagine is ...
6
votes
3answers
212 views
How exactly does linking in C# work?
I want to use a GPL'd library in my C# application, but not necessarily release my own code under the GPL. If I understand correctly linking against a GPL'd library using dynamic linking and not ...
6
votes
6answers
805 views
Building a python module and linking it against a MacOSX framework
I'm trying to build a Python extension on MacOSX 10.6 and to link it against several frameworks (i386 only). I made a setup.py file, using distutils and the Extension object.
I order to link against ...
6
votes
3answers
579 views
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 in doing this on linux, but it would be better if there were a platform-independent way.
...
6
votes
2answers
563 views
How to deploy application that depends on dynamic libraries?
I am developing an application that uses the GStreamer library. In order to ease deployment I would like to collect all the GStreamer libraries in a local bundle. For this I wrote a little script that ...
6
votes
1answer
651 views
What's the difference between the -symbolic and -shared GCC flags?
From the documentation's description, they seem to do the same thing except that "not all systems" support shared and "only some systems" support symbolic (it's unclear if these are the same set of ...
6
votes
5answers
4k views
g++: In what order should static and dynamic libraries be linked?
Let's say we got a main executable called "my_app" and it uses several other libraries: 3 libraries are linked statically, and other 3 are linked dynamically.
In which order should they be linked ...
5
votes
2answers
67 views
Optional shared libraries
I've noticed a failing with apps depending on shared libraries: that if you're missing some dependency, the app will fail at load time even if the user has no intention of using the dependency's ...
5
votes
3answers
328 views
How to statically link all libraries except a few using g++?
I have a requirement that I link all my libraries statically including libstdc++, libc, pthread etc. There is one omniorb library which I want to link dynamically.
Currently I have dynamically linked ...
5
votes
3answers
406 views
jQueryUI tabs - deeplinking into tab content
I am not sure if this is possible at the moment, and the testing ive done seems to offer odd results.
I have on one page a section of 4 tabs, inside these tabs are several sections of text that i ...
5
votes
1answer
313 views
Why do we need to link libraries like pthread when they are already in the right folder “/lib” and “/usr/lib”?
1. Why do we need to link the non standard libraries/include non standard header files when they are already present in the right folder
anirudh@anirudh-Aspire-5920:~/Documents/DUMP$ locate ...
5
votes
4answers
515 views
Patching code/symbols into a dynamic-linked ELF binary
Suppose I have an ELF binary that's dynamic linked, and I want to override/redirect certain library calls. I know I can do this with LD_PRELOAD, but I want a solution that's permanent in the binary, ...
5
votes
6answers
182 views
How can I verify linking between compiled Java code?
Generally speaking one set of code (the client code) links against another (the API code). Java linking is typically verified between .java & .class at compilation time or between .class & ...
5
votes
2answers
1k views
Loading multiple shared libraries with different versions
I have an executable on Linux that loads libfoo.so.1 (that's a SONAME) as one of its dependencies (via another shared library). It also links to another system library, which, in turn, links to a ...
4
votes
1answer
78 views
dlclose crashes when copying dynamic libraries
I have an interesting problem that seems to be unresolved by my research on the internet.
I'm trying to load libraries dynamically in my c++ project with the functions from dlfcn.h. The problem is ...
4
votes
1answer
109 views
How portable is linking executables against loadable modules?
I have a project on my hand with some libraries that are compiled as loadable modules, i.e. linked with libtool's -module flag. These libraries are supposed to contain all the necessary functions in ...
4
votes
2answers
138 views
Why isn't static linking used more?
I understand the benefits of dynamic linking (old code can take advantage of library upgrades automatically, it's more space efficient), but it definitely has downsides, especially in the ...
4
votes
3answers
217 views
Position-independent code and vtable
How are virtual functions implemented in position-independent code?
I know that if my class has virtual functions, the compiler usually generates a vtable for it that contains addresses of all ...
4
votes
3answers
132 views
C++ Avoiding library linking
I currently have a c++ setup like the following
class FlowController
{
public:
//...
private:
cntrl::OneWayValve _intake;
}
As you can see i'm using a cntrl::OneWayValve instance ...
4
votes
1answer
576 views
C++ -fvisibility=hidden -fvisibility-inlines-hidden
I have a question about the C++ visibility attribute. I have read http://gcc.gnu.org/wiki/Visibility and yet I dont quite understand how it works.
I want use the visibility to be hidden on some of my ...
4
votes
1answer
134 views
Inter-module exception name resolution through boost python does not work?
Here is my problem:
I have two C++ modules, A and B, which are built as dynamically-linked libraries. A offers basic math functions, and custom exception types. B is a higher level module that uses ...
4
votes
3answers
558 views
Building C++ source code as a library - where to start?
Over the months I've written some nice generic enough functionality that I want to build as a library and link dynamically against rather than importing 50-odd header/source files.
The project is ...
3
votes
1answer
78 views
Export symbols file: Objective C derived class members, 64-bit
I have a Cocoa-based universal dynamic library that also includes more static libraries, from which I want to export functionality. It seems I cannot do the latest without using an export symbols ...
3
votes
1answer
131 views
Haskell Static vs Dynamic Linking in Deployment
Why doesn't cabal install use the flag --enable-shared by default? I've notice that trivial programs when compiled without this flag, get huge in file size. Is there a connection? Is this a design ...
3
votes
1answer
112 views
LD_PRELOAD only working for malloc, not free
I'm trying to interpose malloc/free/calloc/realloc etc with some interposers via LD_PRELOAD. In my small test, only malloc seems to be interposed, even though free is detected (see output).
I'd ...
3
votes
1answer
57 views
Use COM interface without statically linking to library
This maybe a bit of a newbie question, but I just don't know! To use a function in a DLL that might not be present on the system I can use LoadLibrary and then GetProcAddress. But how can I do the ...
3
votes
2answers
126 views
dlopen: Is it possible to trap unresolved symbols, “manually” resolving them as they happen?
Is it possible to trap unresolved symbol references when they happen, so that a function is called to try to resolve the symbol as needed? Or is it possible to add new symbols to the dynamic symbol ...
3
votes
2answers
131 views
Mex function not updated after recompile
I have a simple mex function, which calls another C++ function from a library. I compile the source with
mex -cxx mymexfunction.cpp -I/some/include -L/some/lib -lmylib
The mylib library is dynamic ...
3
votes
2answers
124 views
How can I add a path(s) to the DLL search order
I have a .NET application which I wish to search other paths for dependent DLLs besides the standard GAC, current directory, PATH areas. Is it possible to tell the app to do this?
E.g.
Tell the ...
3
votes
4answers
318 views
c++ linux double destruction of static variable. linking symbols overlap
Enviroment:
linux x64, compiler gcc 4.x
Project has following stucture:
static library "slib"
-- inside this library, there is static object "sobj"
dynamic library "dlib"
-- links staticly "slib"
...
3
votes
3answers
210 views
checking version of C library (dynamic loading)
I have a program that requires specific versions of libraries (libgstreamer is an example), and therefore an older version will not work. Due to lazy linking it's possible that my program will link to ...
3
votes
3answers
201 views
Compiling a custom malloc
I have written a custom library which implements malloc/calloc/realloc/free using the standard C prototypes, and I figured out how to compile it to an so. I want to test the library by linking a ...