Tagged Questions
Shared libraries are libraries that are loaded by programs when they start. A single shared copy of each library is loaded into physical memory and may be used by multiple processes at the same time. This reduces memory use and improves system performance.
35
votes
44answers
2k views
Favorite 3rd-party Python Libraries?
The more I've learned about Python, The more I've heard about several external libraries that are available, and I was wondering what are some of your favorite python libraries that are availible.
A ...
25
votes
5answers
25k views
C++ Dynamic Shared Library on Linux
This is a follow-up to this question.
I'm trying to create a shared class library in C++ on Linux. I'm able to get the library to compile, and I can call some of the (non-class) functions using the ...
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 ...
19
votes
7answers
702 views
Do dynamic libraries break C++ standard?
The C++ standard 3.6.3 states
Destructors for initialized objects of static duration are called as a result of returning from main and as a result of calling exit
On windows you have FreeLibrary and ...
19
votes
5answers
50k views
ld cannot find an existing library
I am attempting to link an application with g++ on this Debian lenny system. ld is complaining it cannot find specified libraries. The specific example here is ImageMagick, but I am having similar ...
16
votes
2answers
3k views
CMake: how to produce binaries “as static as possible”
I would like to have control over the type of the libraries that get found/linked with my binaries in CMake. The final goal is, to generate binaries "as static as possible" that is to link statically ...
16
votes
3answers
499 views
building a .so that is also an executable
So everyone probably knows that glibc's /lib/libc.so.6 can be executed in the shell like a normal executable in which cases it prints its version information and exits. This is done via defining an ...
14
votes
4answers
2k views
TFS 2010 Branch Across Team Projects - Best Practices
I'm having issues understanding how to configure TFS according to best practices as provided by the TFS Ranger team. The issue is such:
My company has several products which make use of a shared ...
14
votes
6answers
2k views
C/C++ with GCC: Statically add resource files to executable/library
Does anybody have an idea how to statically compile any resource file right into the executable or the shared library file using GCC?
For example I'd like add image files that never change (and if ...
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
4answers
295 views
Good practices for writing C dynamic libraries [DSOs] (binary compatibility + memory management)
I have some experience writing C libraries but I've never read any formal documents describing good practices while writing such libraries. My question pertains around mainly 2 topics:
How to ...
13
votes
7answers
3k views
Difference between static and shared library
What is the difference between static and shared libraries?
I use Eclipse and there are several project types including Static Libraries and Shared Libraries? Does one have an advantage over the ...
13
votes
5answers
2k views
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 shipped for Windows where deploying libraries is generally a lot easier. The ...
12
votes
1answer
205 views
Executing a shared library on Unix
Some Unix shared libraries provide an output when called from the command line as if they were executables. For example:
$ /lib/libc.so.6
GNU C Library stable release version 2.13, by Roland McGrath ...
11
votes
5answers
94 views
Should my library handle SIGSEGV on bad pointer input?
I'm writing a small library that takes a FILE * pointer as input.
If I immediately check this FILE * pointer and find it leads to a segfault, is it more correct to handle the signal, set errno, and ...
11
votes
3answers
147 views
C++ shared library called from C
I have a shared library written in C++. It exports a visible interface made of extern "C" functions which create, destroy and manipulate opaque types.
Now, I'd like to have a pure C program which ...
10
votes
2answers
147 views
Does 32bit x86 code need to be specially PIC-compiled for shared library files?
Compiling code to an object file needs to be done position-independent if the object file is intended to be loaded as a shared library (.so), because the base virtual address that the shared object ...
10
votes
2answers
368 views
Python shared object module naming convention
I have written a Python module in C++ and built it as a shared object library and it worked fine. But while figuring all that out, I noticed (via strace) that Python looks for a few different ...
10
votes
1answer
5k views
how to use addr2line in android
I was stuck with my app, as i am unable to debug as it is a multithreaded one and crashes with error SIGSEGV. I get lot of information on logcat, which gives me addresses in my native library. It'll ...
10
votes
3answers
6k views
Convert a Static Library to a Shared Library
I have a third-party library which consists mainly of a large number of static (.a) library files. I can compile this into a single .a library file, but I really need it to be a single .so shared ...
10
votes
3answers
4k views
How to link using GCC without -l and without hardcoding path
I have a shared library that I wish to link an executable against using GCC. The shared library has a nonstandard name not of the form libNAME.so, so I can not use the usual -l option. (It happens to ...
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 ...
9
votes
6answers
799 views
Static analysis tool to detect ABI breaks in C++
It's not very hard to break binary backwards-compatibility of a DSO with a C++ interface. That said, is there a static analysis tool, which can help detecting such ABI breaks, if it's given two ...
8
votes
2answers
209 views
Segmentation fault while accessing a function-static structure via returned pointer
I have the following structure:
struct sys_config_s
{
char server_addr[256];
char listen_port[100];
char server_port[100];
char logfile[PATH_MAX];
char pidfile[PATH_MAX];
char ...
8
votes
1answer
73 views
What is the best way to make shared libraries available to multiple applications?
Like most shops we've got a team of people working on various projects that all need to access the same core information and functions that relate to our business, usually in C#. We're currently just ...
8
votes
3answers
290 views
Getting jars in tomcat/shared/lib to log using the config of the webapp calling them
I'm looking to upgrade our tomcat instance from 5.5.27 to 6.0.32 and am having some issues with the logging from jars in the shared/lib directory (I've recreated this directory in tomcat 6).
We have ...
8
votes
2answers
206 views
Exceptions between shared C++ libraries in g++
As far as I know it is not defined (undefined behaviour) in C++STD how compiled application should handle situations when one shared library raises exception inside another one [shared lib]. The code ...
8
votes
1answer
140 views
What are the ELF header differences between an ELF object file and shared object?
First of all, I'm asking this from a technical perspective, not a perspective of the user of library code. One example of a difference is that shared objects contain program headers and ordinary ...
8
votes
2answers
240 views
Explicit instantiation of a templated class and dynamic_cast in a shared library
I stumbled into a problem today that I can't seem to solve. I am compiling a shared library that includes a templated class (Derived<T>, whose base is Base) and some explicit instantiations of ...
8
votes
3answers
666 views
How to create a 32-bit shared-library on a 64-bit platform with autotools
I'm using autotools to build my system, which consists primarily of a library. On 64-bit Red Hat platforms, I need to be able to produce a library capable of working on 32-bit Red Hat platforms.
...
8
votes
5answers
5k views
Global variables for node.js standard modules?
I know that global variables are bad.
But if I am using node's module "util" in 40 files in my framework, isn't it better to just declare it as a global variable like:
util = require('util');
in ...
8
votes
3answers
4k views
How to create your own library for Android development to be used in every program you write?
I am a Delphi programmer and have written, over the years, hundreds of classes and routines which I can use in every Delphi program I write.
This library is called dlib and can be *used in every ...
8
votes
5answers
1k views
Dynamic loaded libraries and shared global symbols
Since I observed some strange behavior of global variables in my dynamically loaded libraries, I wrote the following test.
At first we need a statically linked library: The header test.hpp
#ifndef ...
8
votes
2answers
3k views
Is global variable in a shared library / dll, shared across process
I am developing a shared library(.so) and dll. I have a global variable which is updated in multiple threads. So I have mutex lock for synchronization.
I am not clear whether global data in shared ...
8
votes
4answers
2k views
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?
8
votes
5answers
3k views
How to get Netbeans 6.5 shareable libraries working
I created a Web application in Netbeans 6.5. Now I want to use the Joda Time library. I want to share this library via subversion, because I don't want my team mates to be dependend on some Netbeans ...
7
votes
3answers
189 views
How to optimize size of shared library?
Say we have huge static libraries with lots of unneeded features (in the example below we have libraries lib1.a and lib2.a with unneeded functions g1() and f2()).
We want to build shared library with ...
7
votes
2answers
95 views
When is a shared library considered to be “the same” for the purpose of sharing?
I'm wondering... When I'm starting a program X that uses a shared library A, and while the program runs, I modify the shared library on the disk, and run another program Y that depends on the same ...
7
votes
4answers
189 views
C++ interface design around shared library boundaries
Suppose I have two projects. One is an application and the other is a shared library that contains common, reusable code that could be used by more than just this application.
My application uses ...
7
votes
1answer
180 views
Templates and Shared Libraries in D
I just realized something:
Nearly everything in D is becoming templated. That' awesome for a single executable, but how does that work with shared libraries? If no code is generated until it's ...
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
2answers
519 views
JNA loading libraries
I've got two libraries, one with Ada objects and one with C++ objects (I don't have a lot of control about which goes where)
The Ada stuff references the C stuff and vice versa...
This symbol is in ...
7
votes
1answer
145 views
Can one extend virtual interface without recompilation of client code?
A library provides a class with virtual functions. Can this class be extended with new virtual functions without recompiling binaries dynamically linked to the library?
I beleive this is not possible ...
7
votes
1answer
190 views
calling functions with STL parameters from a shared library
I know that it's not possible to safely export a function C++ parameters (eg STL strings), because C++ does not specify a standard ABI. (I've read that as an answer to How to call a function from a ...
7
votes
2answers
417 views
How do applications resolve to different versions of shared libraries at run time?
I'm a noob to how shared libraries work on linux. I am trying to understand how do applications resolve different revisions of the same shared library at run-time on linux.
As far as I understand, a ...
7
votes
4answers
228 views
Does changing the order of class private data members breaks ABI
I have a class with number of private data members (some of them static), accessed by virtual and non-virtual member functions. There's no inline functions and no friend classes.
class A
{
int ...
7
votes
1answer
4k views
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 ...
7
votes
3answers
2k views
C++ Cross Platform Dynamic Libraries; Linux and Windows
Hey guys I needed some help on writing cross-platform code but not an application but a library.
I am creating a library both static and dynamic with most of the development done in Linux, I have got ...
7
votes
4answers
11k views
Why can't Python find shared objects that are in directories in sys.path?
I'm trying to import pycurl:
$ python -c "import pycurl"
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: libcurl.so.4: cannot open shared object file: ...