Tagged Questions

The ld (linker or loader) program combines object files, archive files and (referencs from) shared libraries, relocates their data and addresses together with symbol references. Linking is usually the final step of compiling a program.

learn more… | top users | synonyms

15
votes
3answers
298 views

Linker performance related to swap space?

Here's a conundrum for your nerdy pleasure. Sometimes it's handy to mock up something with a little C program that uses a big chunk of static memory. While programming one these such programs, I ...
14
votes
8answers
2k views

C/C++ gcc & ld - remove unused symbols

I need to optimize the size of my executable severely (ARM development) and I noticed that in my current build scheme (gcc + ld) unused symbols are not getting stripped. The usage of the arm-strip ...
9
votes
2answers
3k views

combine two GCC compiled .o object files into a third .o file

How does one combine two GCC compiled .o object files into a third .o file? $ gcc -c a.c -o a.o $ gcc -c b.c -o b.o $ ??? a.o b.o -o c.o $ gcc c.o other.o -o executable If you have access to the ...
8
votes
3answers
444 views

Create a static Haskell Linux executable

It's not often two things I love so much come together to cause me so much annoyance (besides my kids). I've written a Haskell program at work that uses libraries like text, xml-enumerator, ...
7
votes
1answer
35 views

Prevent import of function from static library

Say I have two static libraries that were not built by me and I have no control over their contents. Library 1 has functions: A() B() C() Library 2 has functions: A() D() E() Both need to be ...
7
votes
1answer
633 views

Linux, GNU GCC, ld, version scripts and the ELF binary format — How does it work?

I'm trying to learn more about library versioning in Linux and how to put it all to work. Here's the context: -- I have two versions of a dynamic library which expose the same set of interfaces, say ...
6
votes
2answers
92 views

How to link a C object file with a Assembly Language object file?

I am having trouble linking 2 object files one of which was generated from an Assembly Language Source File and another that was generated from a C Source file. C source code: //main2.c extern int ...
6
votes
2answers
173 views

Why does LD_PRELOAD not seem to work for write with wc

I was playing around with LD_PRELOAD to intercept libc calls, it appears that the write call doesn't get intercepted with wc, though it does seem to work with cat. A stripped down version of the ...
6
votes
3answers
389 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
3answers
2k views

LD_LIBRARY_PATH vs LIBRARY_PATH

I'm building a simple C++ program and I want to temporarily substitute a system supplied shared library with a more recent version of it, for development and testing. I tried setting the ...
6
votes
1answer
278 views

Porting NewLib for my OS: some questions

I am trying to port NewLib for my OS (I am following this tutorial: http://wiki.osdev.org/Porting_Newlib), and I have some questions. Once LibGloss is done and compiled, when exactly I'll have to ...
5
votes
4answers
109 views

Linking against older symbol version in a .so file

Using gcc and ld on x86_64 linux I need to link against a newer version of a library (glibc 2.14) but the executable needs to run on a system with an older version (2.5). Since the only incompatible ...
5
votes
2answers
178 views

Linker errors when using boost serialization

I am using boost serialization. I compiled with: -L/opt/local/lib -lboost_serialization -stdlib=libc++, but got several (ungooglable) errors: Undefined symbols for architecture x86_64: ...
5
votes
1answer
199 views

gcc, shared objects, and “undefined reference”, what am I doing wrong

I am trying to create a shared object (.so) that exports one function, "external()". I then try to link against the .so but get "undefined reference 'external'". What am I doing wrong here? File: ...
5
votes
1answer
135 views

initialisation of static object when linking against a static library

What are the rules for initialisation of static object declared in another shared library? For instance, consider the following: file X.hpp: struct X { X (); static X const s_x; }; struct Y { ...
5
votes
2answers
158 views

How can a Solaris process read its own symbol table?

I have a Solaris process, which is a C++ application that is loaded by ld with a few .so libraries. This application has a function that gets a return address in the calling function and then tries to ...
5
votes
2answers
207 views

Details on gdb memory access complaint

I have an object file compiled using as (from assembler code). If I link it using ld, when I try to stepi (or nexti) gdb complains about memory access at address 0x0. If I link it using gcc, all is ...
5
votes
1answer
431 views

Incremental linking using gcc on linux. Is it possible?

The way my team's project is developed, we generate a Shared Object library for our application from all all of our .o object files. My task (hopefully it is specific enough but also general enough to ...
5
votes
1answer
2k views

ld: library not found for -lcrt0.o on OSX 10.6 with gcc/clang -static flag

When I try to build the following program: #include <stdio.h> int main(void) { printf("hello world\n"); return 0; } On OS X 10.6.4, with the following flags: gcc -static -o blah blah.c ...
5
votes
13answers
415 views

What are the negative consequences of including and/or linking things that aren't used by your binary?

Let's say that I have a binary that I am building, and I include a bunch of files that are never actually used, and do the subsequent linking to the libraries described by those include files? (again, ...
5
votes
5answers
8k views

Why do I have to define LD_LIBRARY_PATH with an export every time I run my application?

I have some code that uses some shared libraries (c code on gcc). When compiling I have to explicitly define the include and library directories using -I and -L, since they aren't in the standard ...
4
votes
1answer
52 views

What's the difference between -rpath and -L?

gcc and ld provide many ways to specify a search path for libraries—among them the -rpath and -L flags. The manpages reveal no differences between these two flags, effectively saying each flag adds a ...
4
votes
6answers
423 views

Can't link a C program

I'm trying to compile a C program under Linux. However, out of curiosity, I'm trying to execute some steps by hand: I use the gcc frontend to produce assembler code, then run the GNU assembler to get ...
4
votes
3answers
118 views

Templated C++ Object Files

Lets say I have two .cpp files, file1.cpp and file2.cpp, which use std::vector<int>. Suppose that file1.cpp has a int main(void). If I compiled both into file1.o and file2.o, and linked the two ...
4
votes
2answers
176 views

linker script generator

I recently spent many hours trying to fix a problematic ld script. Once I had drawn (on paper) all the different sections I could figure out the problem. So I started searching for some sort of LD ...
4
votes
1answer
177 views

Does the order of -l and -L options in the GNU linker matter?

The -l option tells the linker to search the libraries in the standard dirs. And with -L, we can specify our own library directories for searching. Question: Does the sequence of order matters for ...
4
votes
2answers
794 views

linking a gas assembly file as a c program without using gcc

Hey, as an exercise to learn more precisely how c programs work and what minimum level of content must exist for a program to be able to use libc, ive taken it upon myself to attempt to program ...
4
votes
3answers
362 views

Telling ld where to look for directories via an environment variable

I'm grading C and C++ files for a class, and this assignment uses the GSL library. Since I don't have root permission on my computer, my GSL library is installed in my home directory, and thus I need ...
4
votes
4answers
3k views

Easy check for unresolved symbols in shared libraries?

I am writing a fairly large C++ shared-object library, and have run into a small issue that makes debugging a pain: If I define a function/method in a header file, and forget to create a stub for it ...
4
votes
6answers
3k views

What is the difference between -I and -L in makefile?

Where can I find the usage of these stuff? Is there some books that cover them?
4
votes
5answers
932 views

GCC/ELF - from where comes my symbol?

There is an executable that is dynamically linked to number of shared objects. How can I determine, to which of them some symbol (imported into executable) belongs ? If there are more than one ...
4
votes
2answers
3k views

Include binary file with GNU ld linker script

I have a working linker script. I want to add another data section whose contents is pulled directly from a file (ld shouldn't parse it and extract the sections and so on). How can I do that? ...
3
votes
3answers
113 views

memory mapped using linker

How can I force the linker to put some of my variables to specific place in memory. For example I want to allocate integer name in 0x8100000. If I didn't miss understand I can use: int name ...
3
votes
1answer
59 views

How does chroot affect dynamic linking?

Here's the scenario I'm having: I've created a debootstrap ubuntu maverick (64-bit) environment. I placed it at /env/mav/ on my ubuntu (64-bit) lucid system. I can chroot into /env/mav and can ...
3
votes
1answer
102 views

How to get executable shared library list from C++?

I'd like to programmatically get a list of the shared libraries linked by my binary on Linux and Solaris. Right now I shell out to pmap (I can't use ldd on the binary because it won't include dlopen'd ...
3
votes
3answers
108 views

How to add an object file to every link

There is a bug in RHEL5's gcc-4.3.2 with which we are stuck. As a work-around we have extracted the missing object and put it in an object file. Adding this object file to every link makes the problem ...
3
votes
2answers
128 views

Ld magically overrides statically linked symbols

For a few days we are dealing with very strange problem. I can't understand how it even happens - when a third-party (MATLAB) program uses our shared library, it somehow overrides some of our symbols ...
3
votes
0answers
90 views

Adding to the *end* of the gnu ld library search paths

I know how to add to GNU ld's library search path using the -Ldir option and use it extensively. But as far as I can tell from reading the manuals of gcc and ld, there is no way to add to the end of ...
3
votes
3answers
646 views

Can't link assembly file in Mac OS X using ld

I'm trying to run a basic assembly file using 64 Bit Mac OS X Lion, using nasm and ld which are installed by default with Xcode. I've written an assembly file, which prints a character, and I got it ...
3
votes
1answer
275 views

Linux shared library global constructors interdependency

Operating system Centos 5.6 i686 2.6.18-53.1.4.el5vm. gcc version 4.1.2 20080704 (Red Hat 4.1.2-48) ld version 2.17.50.0.6-6.el5 20061020 I compile in this way: gcc -c -fnon-call-exceptions ...
3
votes
1answer
542 views

Failure building cross-compiling 64-bit GCC

I'm trying to get a working gcc cross-compiler created that lives on my local machine [Darwin new-host-2.home 10.7.4 Darwin Kernel Version 10.7.4: Mon Apr 18 21:24:17 PDT 2011; ...
3
votes
2answers
376 views

Shared Library Constructor is not executed

I have the following problem. I write a shared library #include <stdio.h> #include <stdlib.h> static void __attribute__ ((constructor)) test_init(void); static void __attribute__ ...
3
votes
1answer
336 views

How can I convince Xcode to emit a duplicate symbol linker error?

Here's a different one from the usual confusion over duplicate symbol errors... :-) I'm working on some legacy Mac code in an Xcode project that has the same global, "trace", defined in several ...
3
votes
2answers
208 views

Why does the GNU linker not find a shared object with -l<library>?

I'm getting an error when trying to link an object file: $ g++ -o intro intro.o -L -Wl,-rpath-link -lnotes -lm -lnsl -lpthread -lc -lresolv -ldl /usr/bin/ld: cannot find -lnotes collect2: ld ...
3
votes
1answer
1k views

error while loading shared libraries: libboost_system.so.1.45.0: cannot open shared object file: No such file or directory

I am building a C++ executable on Linux. The executable links into some boost libraries. This is the output when I attempt to run the binary: ...
3
votes
1answer
137 views

Duplicate definition for symbol __module_registered error

I get an error message from GHCi about a "duplicate definition for symbol __module_registered", like this: GHCi runtime linker: fatal error: I found a duplicate definition for symbol ...
3
votes
5answers
821 views

GNU ld removes section

I'm writing a boot script for an ARM-Cortex M3 based device. If I compile the assembler boot script and the C application code and then combine the object files and transfer them to my device ...
3
votes
2answers
724 views

Avoiding exporting symbols from executables on Linux

I'm finding that when I link an executable against a static library (.a), the symbols from the static library end up being exported by the executable file. I would like to avoid this and export ...
3
votes
2answers
2k views

Convert a Static Library to a Shared Library (create libsome.so from libsome.a): where's my symbols?

the title of this question is an exact dupe, but the answers in that question don't help me. I have a bunch of object files packed in a static library: % g++ -std=c++98 -fpic -g -O1 -c -o foo.o ...
3
votes
1answer
397 views

Questions on GCC linker

Apologize because for the moment I don't have the environment to experiment and sort out the following questions myself: 1) Let's say I have four library files: libmylib_super.a and ...

1 2 3 4 5 6