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

0
votes
0answers
9 views

GNU ld: What is the difference between these two linker scripts?

It looks like a game of "spot the difference" for software engineers at first, but the tiny difference in syntax apparently makes a huge difference in linking behaviour. ldscript1: ...
3
votes
1answer
95 views

C++ Find and remove references to little-used library

I'm modifying a large collection of legacy C++ code which has a few dependencies on the old commoncpp library. We want to replace commoncpp with something more modern (e.g. Boost). First I need to ...
0
votes
1answer
24 views

Linking with another start-up file

I am trying to link a program with my own start-up file by using the STARTUP directive in a LD script: ... ENTRY(_start) STARTUP(my_crt1.o) ... GCC driver is used to link the program (not to bother ...
-2
votes
0answers
25 views

Xcode linker error in iphone simulator [closed]

My Xcode project can build successfully on device,but when build in simulator, a linker error occurrs. The error message is: Apple LLVM version 4.2 (clang-425.0.28) (based on LLVM 3.2svn) ...
0
votes
1answer
26 views

Where to get cross-linker?

I found that providing few options to llvm-clang I can compile to other platform. This for example will compile for ios: clang -cc1 -triple arm-apple-darwin -emit-obj -mrelax-all -disable-free ...
0
votes
1answer
26 views

Finding shared library dependencies when linking executable

I am attempting to cross-compile gstreamer for ARM hosts on a Ubuntu 12.04 (32-bit) build system. None of what I'm about to describe happens with the i686-linux-gnu GCC. I am compiling on Ubuntu ...
2
votes
1answer
22 views

Clang/LD function demangling?

I have two working compilers, clang on Mac, which can target iPhone, and clang on iPhone, which also targets iPhone. Normally both work great, generating binaries and libraries. Libraries produced on ...
0
votes
1answer
36 views

How to write this ld script ?

If I want to link all .o files except z.o .All .o (no z.o) is relocated at 0xC0000000 while z.o is at 0xFFFF0000 but z.o is located at file offset 0x8000. So.how to write this ld script ? Here is ...
1
vote
0answers
20 views

Using GNU ld, how can I force the address of a specific (external) symbol without getting a “relocation truncated” error?

I have two functions, a() and b(), that both have specific, fixed load/run-time addresses. I am compiling a() myself, while b() is already provided (e.g. in ROM). The file a.c is as follows: extern ...
2
votes
2answers
82 views

Error While Compiling C program in Linux Mint [closed]

i am getting errors while compiling a simple C program. #include<stdio.h> void main() { int i=5; printf("I value is %d",i); } The Errors are .. /usr/local/bin/ld: this linker was not ...
0
votes
0answers
30 views

How to build javafuse on Ubuntu?

I'm trying to implement the JavaFuse project but when I execute the make command I'm getting this error: gcc -shared build/contextClass.o build/conninfoClass.o build/javafuse_jni.o ...
0
votes
1answer
32 views

NASM: emit MSW of non-scalar (link-time) value

I am attempting to define a constant IDT (Interrupt Descriptor Table) entry in NASM, and to do so, I need to emit into a data table the high word of a double-word address that is not resolved until ...
0
votes
1answer
15 views

Change in gnu ld linker behavior

When I went from using GNU ld version 2.20 to 2.21 , I began seeing the following change in behavior. Not sure if it is broken behavior in 2.20 that was fixed in 2.21 or if something else is going on. ...
1
vote
2answers
40 views

align all object files in data/sbss section in linker script

EDIT: Solved - the linker script property "SUBALIGN(32)" applied to the static data sections does exactly what I required, forcing each object file linked to be aligned to a 32byte boundary, with ...
1
vote
1answer
71 views

GCC linking / symbol name mangling with C and assembler files

I'm having some trouble compiling and linking a library that's written in assembler with my program code which is in C. In my case it's for an AVR microcontroller using the avr-gcc suite, but I ...
0
votes
1answer
22 views

Import library creation not working

I am trying to link a small DLL (just one input file) on Windows using binutils ld version 2.21. I am getting the following error for every symbol marked as dllexport in my object file: Cannot export ...
0
votes
2answers
38 views

How to link with the command ld

i got 2 files: "test.o" and "testlib.a" both files are in the same folder now i want to join them with the linker. The Problem is have to link them with the "ld" command! So can some tell me how ...
0
votes
1answer
58 views

Invoking a C function dynamically at runtime without knowing its prototype

I want to know if it is possible to achieve above. Apparently it is possible to load a library and invoke method of it using dlopen, dlsym methods in Linux. But it requires knowing the function ...
0
votes
2answers
92 views

The program cannot find correct version of glibc/libstdc++, although it was statically linked

I am trying to link my program statically with glibc, because version of the glibc on the target machine is pretty much unpredictable. I used linker flags -static-libgcc and -static-libstdc++ and it ...
1
vote
1answer
52 views

Using LD_PRELOAD to overload call to a C function of a shared library

I'm following this answer to override a call to a C function of a C library. I think I did everything correctly, but it doesn't work: I want to override the "DibOpen"-function. This is my code of ...
0
votes
0answers
48 views

Linker error when building Boost.Python from source

Since I need the Boost.Python library linked with Python 3.3., I am trying to build it from source as described here, using the bjam command. The following error stops me: cls ...
1
vote
1answer
74 views

How to link Python C module with `ld`. undefined reference to `__dso_handle'

My current command: c++ -fPIC -c algo_cython.cpp ld -shared algo_cython.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -lc -lstdc++ -o algo_cython.so And the error: algo_cython.o: In function ...
0
votes
2answers
43 views

Linked assembly subroutine doesn't work as expected

I'm writing a simple subroutine in FASM to print 32-bit unsigned integers to STDOUT. This is what I came up with: format elf public uprint section ".text" executable uprint: push ebx push ...
0
votes
0answers
35 views

Library -m64 cannot be found while installing GotoBLAS2

I use following command to install GotoBLAS2 on my MBP: make TARGET=NEHALEM BINARY=64. But at the end, it keeps giving me following error: /bin/sh: lapack-3.1.1/make.inc: No such file or directory ...
0
votes
1answer
46 views

Cant use shared libraries in Qt project

I created a C++ library project in Qt creator. After building the project I have the libMylib.so, .so.1, .so.1.0, .so.1.0.0, Makefile and mylib.o files. I added the library headers to my other project ...
1
vote
1answer
69 views

CMake Build Mac App

Our company uses CMake currently to build our executables for Windows. I'm working on making our application work on Mac. So far the application builds fine on the Mac. However, when I try to open the ...
0
votes
0answers
18 views

malloc error during linking while building for android

I am getting the following error during the linking process ld(96479) malloc: *** mmap(size=229376) failed (error code=12) *** error: can't allocate region *** set a breakpoint in ...
0
votes
1answer
33 views

Force GNU linker to generate 32 bit ELF executables

Hi I am currently generating x86 assembly for a compiler that I am writing and am having some trouble linking the file on my 64-bit VM (the assembly code is 32 bit). I was able to assemble the ...
1
vote
2answers
81 views

Linking fails with CMake, DSO-Link-Change

My software that compiled fine on linux a few months ago stopped compiling on my new ubuntu: Linking CXX executable myApp /usr/bin/ld: ../libMyLib/libMyLib.a(MyFile.cpp.o): undefined reference to ...
1
vote
1answer
66 views

Loading Linux libraries at runtime

I think a major design flaw in Linux is the shared object hell when it comes to distributing programs in binary instead of source code form. Here is my specific problem: I want to publish a Linux ...
2
votes
0answers
46 views

“start”, referenced from: -u command line option ld: symbol(s) not found

I try to build an example from the book "hacking and securing iOS Applications" by Jonathan Zdziarski, compiling an example with a lot of object-files created. but when compiling the binary with: ...
0
votes
1answer
20 views

LFS 7.2 glibc-2.16.0 make error

I'm building an LFS system ( refering to LFS 7.2 ) I got this make error while building glibc-2.16.0: /mnt/lfs/tools/bin/../lib/gcc/i686-lfs-linux-gnu/4.7.1/../../../../i686-lfs-linux-gnu/bin/ld: ...
2
votes
2answers
68 views

Section load address and execution address in linker script

I'm writing a customized linker script for a bare-metal ARM application. The application is stored in a flash memory, at the moment I have a bootup code copying the whole application in SDRAM, and ...
2
votes
1answer
57 views

GCC, linker search path

I'm trying to figure out how to set some environment variable which would make g++ to link to correct versions of the libraries. I have some old boost libraries in /usr/lib64 (linking against these ...
1
vote
2answers
67 views

ld resolve multiple definition manually

I have a unit test file that is a part of a large framework. Some of the framework classes I'm using in the tests are mocked up versions to return the values I need for testing. That is I redefined ...
0
votes
0answers
28 views

ld: undefined symbol vs ld: undefined reference

What is the difference between these errors in GNU Binutils ld ? undefined reference undefined symbol I have a good understanding of undefined reference: This occurs for example when the loader ...
1
vote
0answers
80 views

lfs glibc compilation ld error

My host system is Linux debian 2.6.32-5-amd64 #1 SMP Mon Feb 25 00:26:11 UTC 2013 x86_64 GNU/Linux. I want to build a LFS and the glibc compilation stop me now. Here are the error prompts, thank you. ...
0
votes
0answers
30 views

What does the GNU ld linker error “unknown relocation type 30” mean?

A coworker and I ran into this odd error today using the following version of LD: $ mb-ld --version GNU ld (GNU Binutils) 2.21.53.20110813 Copyright 2011 Free Software Foundation, Inc. This is part ...
0
votes
1answer
92 views

manually setting function address gcc

I've got a worked binary used in embeded system. Now i want to write a some kind of patch for it. The patch will be loaded into a RAM bellow the main program and then will be called from main program. ...
2
votes
1answer
63 views

linkscript - different link address and load address

I'm wring a toy OS for my raspberry pi and trying to setup the MMU. I want to split the virtual memory between 3G:1G, so I think my code should be linked at 0xC0008000, while loaded to 0x8000 on ...
0
votes
1answer
56 views

Undefined reference errors in Qt application [duplicate]

I have a library and example application, driven by CMake. So, there is a class, which I use in library: sourceeditor.h #ifndef SOURCEEDITOR_H #define SOURCEEDITOR_H #include <QWidget> ...
2
votes
0answers
197 views

g++ Optimization Flags: -fuse-linker-plugin vs -fwhole-program

I am reading: http://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html It first suggests: In combination with -flto using this option(-fwhole-program) should not be used. Instead relying on a linker ...
0
votes
0answers
27 views

Why Intel Pin cannot identify the image/routine of some executed instructions?

I am creating a large pintool and I have two questions: The tool (abridged below to the relevant part only) sometimes cannot identify the image/routine for particular executed instructions. Does ...
0
votes
1answer
24 views

sqlite linking error

I have a strange link error with SQLite. I have the following code: void TestSQLiteTemp() { /* sqlite3_initialize(); */ sqlite3_close( db ); } I can compile and link and everything is fine: ...
1
vote
3answers
84 views

Order of parameters in g++/clang++ with makefile

I stumbled upon this very annoying problem while working with CERN's ROOT on Ubuntu 12.04 but I think it's a more general problem. I have some C++ code with external references that I compile and ...
0
votes
1answer
52 views

linux ld -Ttext fails to generate executable with correct org

I am working on a 32 bit protected mode kernel. I am trying to generate code whose text region starts at 0x100000. I issue the following command := ld -melf_i386 $(OBJS)-o kernel -Ttext 0x100000 I ...
1
vote
0answers
176 views

android ndk-build undefined reference, but NM says it's there

EDITED: solution at the end of the post. I am building a shared library for android using NDK r8d, using the sample project hello-jni from the NDK, and some static libraries compiled with the ARM ...
2
votes
1answer
57 views

Put gcc libs .data in specific section?

I'm trying to switch to the GNU GCC compiler for our embedded system, but I'm having trouble linking the project as the memory layout of our chip is split: RAM section 1: 0x10000-0x12FFF RAM section ...
0
votes
1answer
63 views

GNU Linker and architecture i386

So I'm running on OS X and I want to link two Mach-O objects i386. The first is generated from NASM (it's an assembly file) nasm -f macho -o kernel.o kernel.asm The second is generated from GCC ...
0
votes
1answer
71 views

ld.exe has stopped working

I am using Dev-C++ V(4.9.9.2) and trying to build a solution that performs some system based programming specifically that calls the Windows Service Manager. Now whenever I try to build my ...

1 2 3 4 5 13