Sponsored Content
Full Discussion: Shared static library
Top Forums UNIX for Dummies Questions & Answers Shared static library Post 302612825 by jim mcnamara on Monday 26th of March 2012 11:11:31 AM
Old 03-26-2012
There are static libraries - files usually in the /lib directory that end with .a.
There are shared libraries - files usually in the /lib directory that end with .so (or .sl), sometimes called dynamic libraries.

To link means 'Resolve external symbols or functions in your code like printf()'

By default, when you compile C code, you liink against a set of shared libraries.
You have to go out of your way to create an executable that is linked against a static library. Read your compiler documentation on how to do this.

There are a few valid uses for linking statically. Linking against shared libraries, also called dynamic linking, creates an executable that makes much better use of system resources, because eveybody else's executable file shares the same library with your code. MUCH less memory usage. That is why dynamic linking is better.

Got all that?

Next: LD_PRELOAD

This is an envrionment variable that anyone can set. If changes how the UNIX system looks for dynamic libraries. When you first run an executable, you have to find and open the dynamic libraries you linked against so all of the symbols like printf() will be there to use.

You use LD_PRELOAD to force the system to kind of auto-magically link against a library that was NOT one of the original linked libraries. So now the printf() function calls in your executable employ a different library with different code to execute printf.

There are limitations on LD_PRELOAD, to prevent bad guys from doing bad things, but that is beyond the scope of your question.
This User Gave Thanks to jim mcnamara For This Post:
 

10 More Discussions You Might Find Interesting

1. Programming

Shared memory in shared library

I need to create a shared library to access an in memory DB. The DB is not huge, but big enough to make it cumbersome to carry around in every single process using the shared library. Luckily, it is pretty static information, so I don't need to worry much about synchronizing the data between... (12 Replies)
Discussion started by: DreamWarrior
12 Replies

2. UNIX for Advanced & Expert Users

static and shared libraries

can someone explain whether my understanding is correct lets suppose we have a program that uses library x. if x is static then the code of x will be part of our program, so if we're going to have 5 executables of our program, then each executable will have x as part of it. Also, x does not... (2 Replies)
Discussion started by: JamesByars
2 Replies

3. Programming

Shared memory for shared library

I am writing a shared library in Linux (but compatible with other UNIXes) and I want to allow multiple instances to share a piece of memory -- 1 byte is enough. What's the "best" way to do this? I want to optimize for speed and portability. Obviously, I'll have to worry about mutual exclusion. (0 Replies)
Discussion started by: otheus
0 Replies

4. Shell Programming and Scripting

How to change a Makefile from building static library to shared library?

Hi: I have a library that it only offers Makefile for building static library. It built libxxx.a file. How do I in any way build a shared library? (either changin the Makefile or direct script or command to build shared library) Thanks. (1 Reply)
Discussion started by: cpthk
1 Replies

5. Linux

Could static library include static library?

I have some static library(libxxx.a libyyy.a). And I want to generate my library(libzzz.a), libzzz.a will use libxxx.a and libyyy.a I wan't my application only use libzzz.a, (means libzzz.a had include libxxx.a, libyyy.a), how can I do that? Thank you. example: I have zzz.c. I do ... (4 Replies)
Discussion started by: freemagic
4 Replies

6. Programming

Static and Shared Library in Makefile

I am having a devil of a time with a very simple make file. The program needs two shared and one static library. If I link the shared libraries only like below the mysql test app works ... (1 Reply)
Discussion started by: jadsys
1 Replies

7. Programming

Shared, Static , Dynamic?

if I could compile the same source file as shared/static/dynamic what are the advantages/ disadv of each. PS:by dynamic i am asking about usage of "dlopen". How is it particularly diff from shared libs (2 Replies)
Discussion started by: dragonpoint
2 Replies

8. Programming

Even the Static cURL Library Isn't Static

I'm writing a program which uses curl to be run on Linux PCs which will be used by a number of different users. I cannot make the users all install curl on their individual machines, so I have tried to link curl in statically, rather than using libcurl.so. I downloaded the source and created a... (8 Replies)
Discussion started by: BrandonShw
8 Replies

9. Programming

Shared library with acces to shared memory.

Hello. I am new to this forum and I would like to ask for advice about low level POSIX programming. I have to implement a POSIX compliant C shared library. A file will have some variables and the shared library will have some functions which need those variables. There is one special... (5 Replies)
Discussion started by: iamjag
5 Replies

10. AIX

Add shared members from library to same library in a different directory

I'm trying to install libiconv to AIX 7.1 from an rpm off of the perzl site. The rpm appears to install but I get this error message. add shr4.o shared members from /usr/lib/libiconv.a to /opt/freeware/lib/libiconv.a add shr.o shared members from /usr/lib/libiconv.a to ... (5 Replies)
Discussion started by: kneemoe
5 Replies
SoTextOutlineEnabledElement(3)					       Coin					    SoTextOutlineEnabledElement(3)

NAME
SoTextOutlineEnabledElement - The SoTextOutlineEnabledElement class is yet to be documented. FIXME: write doc. SYNOPSIS
#include <Inventor/elements/SoTextOutlineEnabledElement.h> Inherits SoInt32Element. Public Member Functions virtual void init (SoState *state) FIXME: write doc. virtual void push (SoState *state) FIXME: write doc. virtual void pop (SoState *state, const SoElement *prevTopElement) FIXME: write doc. Static Public Member Functions static SoType getClassTypeId (void) static int getClassStackIndex (void) static void * createInstance (void) static void initClass (void) static void set (SoState *const state, SoNode *const node, const SbBool enabled) FIXME: write doc. static void set (SoState *const state, const SbBool enabled) static SbBool get (SoState *const state) static SbBool getDefault (void) Protected Member Functions virtual ~SoTextOutlineEnabledElement () Additional Inherited Members Detailed Description The SoTextOutlineEnabledElement class is yet to be documented. FIXME: write doc. Since: Coin 1.0 TGS Inventor 2.4 Constructor &; Destructor Documentation SoTextOutlineEnabledElement::~SoTextOutlineEnabledElement (void) [protected], [virtual] The destructor. Member Function Documentation SoType SoTextOutlineEnabledElement::getClassTypeId (void) [static] This static method returns the class type. Reimplemented from SoInt32Element. int SoTextOutlineEnabledElement::getClassStackIndex (void) [static] This static method returns the state stack index for the class. Reimplemented from SoInt32Element. void * SoTextOutlineEnabledElement::createInstance (void) [static] This API member is considered internal to the library, as it is not likely to be of interest to the application programmer. void SoTextOutlineEnabledElement::initClass (void) [static] This static method initializes static data for the SoTextOutlinedEnabledElement class. Reimplemented from SoInt32Element. void SoTextOutlineEnabledElement::set (SoState *conststate, const SbBoolenabled) [static] FIXME: write doc. SbBool SoTextOutlineEnabledElement::get (SoState *conststate) [static] FIXME: write doc. SbBool SoTextOutlineEnabledElement::getDefault (void) [static] FIXME: write doc. Author Generated automatically by Doxygen for Coin from the source code. Version 3.1.3 Wed May 23 2012 SoTextOutlineEnabledElement(3)
All times are GMT -4. The time now is 11:29 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy