Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
2k views

Limiting visibility of symbols when linking shared libraries

Some platforms mandate that you provide a list of a shared library's external symbols to the linker. However, on most unixish systems that's not necessary: all non-static symbols will be available by ...
3
votes
1answer
242 views

How to correctly use a simple linker script

I'm trying to understand deeper linking process and linker scripts...looking at binutils doc i found a simple linker script implementation that i've improved by adding some commands: ...
3
votes
1answer
662 views

Using a Linker Script on Mac OS X

Is there any way to use a linker script with ld on Mac OS X? The GNU ld program on Linux accepts a -T <scriptname> option, but on Mac OS -T is an unknown command option. Using an alternative ...
2
votes
2answers
1k views

gcc/ld - create a new libc.so with __isoc99_sscanf@@GLIBC_2.7 symbol from glibc.2.6

I have an application, which does a error when I try to run it: /lib/libc.so.6: version `GLIBC_2.7' not found But the only symbol it needs from glibc 2.7 is __isoc99_sscanf@@GLIBC_2.7 I want to ...
2
votes
1answer
355 views

powerpc-eabi-objcopy creates 1GByte file

my elf-file is about 1MByte with all debug symbols. As I try to create a binary file with "powerpc-eabi-objcopy -O binary out.elf out.bin" the out.bin is 1GByte huge. The build script looks like this ...
2
votes
2answers
493 views

Aligning static arrays in the .bss section of linker file

I have a function: void testfunction() { static char_t theChar1 = 1; static unsigned char smallArray[1]; static unsigned char largeArray[135]; ... } and a linker file: . = ALIGN(4); ...
1
vote
0answers
78 views

linker script load vs. virtual address

I've got the following linker script that is supposed to link code to run on a flash based micrcontroller. The uC has flash at address 0x0, and RAM at 0x40000000. I want to put the data section into ...
1
vote
1answer
82 views

(vxworks) In the binary produced using this linker script, why doesn't the first address encountered start at the text segment start address?

I have a project I'm working on in vxWorks, constructing a vxsim binary for testing. There's three stages to the link process; the relevant portions of the makefile look roughly like the following: ...
1
vote
2answers
1k views

Loader scripts for ARM STR7xx

I'm trying to program ARM using Eclipse + CDT + yagarto (gnu toolchain) + OpenOCD. In several sample projects (from yagarto site for example) I found linker scripts (*.ld) where a lot of linking ...
0
votes
1answer
20 views

How can I make an empty section with GNU ld?

I'm working on a cortex-m3 chip. The stack space was reserved in the source code with an uninitialized array on the bss section. The linker script I used is as follows: MEMORY { FLASH (rx) : ...
0
votes
1answer
24 views

ALIGN in Linker Scripts

What does the ALIGN keyword do in linker scripts? I read many tutorials about linker scripts but I cant understand what really ALIGN do. Can any one explain it simply. Thanks!
0
votes
0answers
80 views

Linker Script error for compiling .ELF with ARM7 cross compiler tool chain

I am using an ARM cross compiler with mingw to compile set of 6 source files to one object file(.elf) for ARM platform. As a next step I simulate this in the OVP simulator for some statistics. In my ...
0
votes
1answer
137 views

Using -dynamic-linker with a linker script?

I am using Linux 2.6.31-14 on Intel 32-bit processor. C file: #include <stdio.h> main() { printf("Hello World!\n"); } Linker script: SECTIONS{ .text 0x00000100 :{ *(.text) ...
0
votes
1answer
3k views

linking problem: i386:x86-64 architecture of input file *.o is incompatible with i386 output

I got a problem in linking when I moved my osdev to linux where it worked previously on gcc 3.5.* and binutils 2.18 (compiled to output x86_64-elf) running under cygwin. Here are the infos: gcc -v ...
0
votes
1answer
48 views

Unknown linking error

I'm developing my own OS, but for this I need to touch on linking, then I've done this linking script to build it: ENTRY (loader) SECTIONS{ . = 0x00100000 .text : { *(.text) } ...