Tagged Questions

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
793 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 ...
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
1answer
538 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; ...
2
votes
2answers
242 views

Why does the -r option (relocatable) make ld not find any libraries?

Running Debian/Linux x86_64 with GNU ld 2.21. Quite simply, if I link with ld -o main main.o /usr/lib/crti.o /usr/lib/crt1.o /usr/lib/crtn.o -lc -lm It works, but when I link with ld -r -o ...
2
votes
1answer
352 views

Does binutils-gold has support for arm/Android?

I am trying to replace my default arm-eabi-ld with installed from binutils-gold ld, however during linking I have got (..../*.o) requires unsupported dynamic reloc; recompile with -fPIC ...
2
votes
1answer
489 views

ELF shared library: relocation offset out of bounds

There is a software package elfutils which includes a program called eu-elflint for checking ELF binaries (just as lint for C - hence the name). Just for curiosity I have checked our own shared ...
2
votes
3answers
2k views

How to install gnu ld on mac os x 10.6?

I'm having a lot of trouble compiling the otherwise excellent Contiki OS on my macbook pro (with mac os x 10.6). Contiki actually uses a lot of GNU-specific features and options of GCC, AR, LD, and so ...
1
vote
1answer
149 views

Injecting sections into GNU ld script; script compatibility between versions of binutils.

I'm building something like in the question How to collect data from different .a files into one array? How to keep sections in .a files with ld script?, i.e. arrays composed during link-time out of ...
1
vote
3answers
635 views

solaris elfedit: Is there something similar for linux ? (a shared library editor)?

Linux: It there a way to edit a compiled shared library ? specifically I am searching on how to add the DT_SYMBOLIC flag on an already compiled binary shared library? Here is why I am asking this: ...
0
votes
1answer
258 views

Creating a relocatable shared library with binutils

I have a custom toolchain that generates relocatable shared libraries. This works with an equally custom ELF loader which loads these into memory, fixing them up. I am now trying to persuade gcc and ...