The linker command language used to control the memory layout of computer programs and details of the linking process.

learn more… | top users | synonyms

0
votes
1answer
29 views

How to place a variable at the end of a section (with GCC)

I want to place a specific variable at the end of its memory section. So if I have: file1.cpp: __attribute__((section(".mysection"))) char var1[] = "var1"; and in another file2.cpp: ...
0
votes
1answer
25 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 ...
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 ...
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 ...
0
votes
0answers
27 views

GCC - Sections has wrong LMA

I'm having trouble with my linker script. The sections .data2, .nonsharedram, and .bss has the wrong LMA. They should be placed in FLASH but are instead placed in the SHARED1 and SHARED2 area. Linker ...
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 ...
5
votes
2answers
131 views

Using #defined values before RAM has been initialised

I am writing the boot-up code for an ARM CPU. There is no internal RAM, but there is 1GB of DDRAM connected to the CPU, which is not directly accessible before initialisation. The code is stored in ...
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
0answers
80 views

ld linker script producing huge binary

I'm using binutils-2.21.53.0.1-6.fc16.x86_64. I have a small object file, hello.o with just enough "stuff" to have contents in all sections: Section Headers: [Nr] Name Type ...
0
votes
2answers
212 views

understanding the __libc_init_array

I viewed the source code of __libc_init_array from http://newlib.sourcearchive.com/documentation/1.18.0/init_8c-source.html . But I don't quite understand what this function does. I know that these ...
4
votes
1answer
157 views

How do I compile and link the sample code to get a binary?

I'm working with a TI Stellaris LM3S1968. This MCU has an ARM Cortex-M3. I installed a VM on my laptop with Windows 7 on it, and there I installed GNU Tools for ARM Embedded Processors. Then I ...
2
votes
0answers
79 views

How to prevent implicit linker script changing the LMA of a section

I'm using a modular build system for software than runs on an ARM embedded target as well as on a normal X86 (linux) machine. I'm compiling with a GNU toolchain, thus linking using ld. One of the ...
2
votes
1answer
106 views

Why would the address of reset vector differ when two firmwares are linked with the same linker script?

I have a Cortex-M3 chip and on it I am running a bootloader that uses eCos. The bootloader, after checking for firmware updates etc, jumps to another location (BASE_ADDRESS_OF_APP + 0x19) on the ROM ...
2
votes
7answers
167 views

Defining “main” by a function pointer

In C++, is it possible for main to be defined by a function pointer? For example: int f(int, char**) { return 0; } int (*main)(int, char**) = &f; This code compiles and links correctly, ...
0
votes
1answer
66 views

Extracting archive file in linker script

I am trying to deal with a problem like the following one: Assume that I have a library libxyz.a created from: /* main.c */ int main(void) { int a; } compiled and archived with: gcc -c main.c ...
2
votes
1answer
141 views

Is there a linker script directive that allows me to move my stack start address?

I'm trying to change the start location of my stack using a linker script on x86_64. I was able to move my executable start address using this: PROVIDE (__executable_start = ...
7
votes
2answers
569 views

Understanding the Location Counter of GNU Linker Scripts

I'm working on a university project where I'm writing software for an Atmel SAM7S256 microcontroller from the ground up. This is more in depth than other MCUs I've worked with before, as a knowledge ...
0
votes
1answer
120 views

GNU linker and linker script : Linker does not generate correct LMA

I have the following line in my linker script JumpTable ABSOLUTE(0x2000000C): AT(eROData) { JumpTableStart = .; *(.JumpSection); . = ALIGN(4); JumpTableEnd = .; } > SRAM eROData ...
1
vote
1answer
155 views

what is the difference between LD_LIBRARY_PATH and -rpath

When linking libraries, -rpath is used to pass the address of dynamic libraries to ld. My question is if I set the address in LD_LIBRARY_PATH, do I still need -rpath flag in my linking process?
0
votes
2answers
166 views

Meaning of arm loader script

OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm") OUTPUT_ARCH(arm) ENTRY(_ram_entry) SECTIONS { . = 0xA0008000; . = ALIGN(4); .text : { *(.text) } . = ALIGN(4); ...
0
votes
0answers
88 views

How to implement OVERLAY in i386 linker via linker scripts

I am trying to link the Overlay example from the GDB reference manual. The example is targeting the d10v processor (not familiar with it) but I would like to demonstrate that the debugger works with ...
0
votes
0answers
65 views

Linker script .foo : { *(.*) }

I'm writing a bootable program that is 512 bytes, and I have to stick the 0xAA55 in the last 2 bytes of my 512 byte program image. So I've done that. Now my linker script, should be pretty simple. ...
9
votes
3answers
204 views

Offset of global const variable in executable

Would like to have an executable save its state by modifying its own global constants. Just for the kicks of having a totally self-contained executable. A few solutions/hacks that come to mind: Use ...
1
vote
1answer
301 views

linker script wastes my memory

here's my problem. I have this linker script that links a standard arm7nommu-uClinux kernel: OUTPUT_ARCH(arm) ENTRY(stext) SECTIONS { . = 0x0; .vectors : { *(.resetvector) } . = 0x8000; .init ...
1
vote
0answers
96 views

Finding out the end address of binary from linker script comes out incorrect

So, I've been trying to figure out the end address of a binary by using the following linker script: OUTPUT_FORMAT("binary") ENTRY(Start) SECTIONS { .header 0x15000 : { header = .; ...
0
votes
1answer
80 views

Unexpected linker section output location

I'm trying to use the ld command in linux on an assembly file for a kernel. For it to boot with grub, it needs to be after the 1Mb address. So my link script has the text going to the address ...
2
votes
1answer
202 views

location counter in linker script

I was thinking that I understand the working the location counter in linker script but I guess it's not so. I just did a simple test to confirm what I understand. I wrote a simple c program without ...
0
votes
0answers
136 views

ORG assembly directive and location counter in linker script

As far as I understand using the ORG directive in assembly (NASM assembly in particular) and setting the location counter in a linker script to some value perform the same function. However I am ...
6
votes
1answer
1k views

What does KEEP mean in a linker script?

The LD manual does not explain what the KEEP command does. Below is a snippet from a third-party linker script that features KEEP. What does the KEEP command do in ld? SECTIONS { .text : { ...
0
votes
1answer
180 views

use of defining symbols in linker script

I am wondering what is the use of defining symbols in a linker script. Using a linker script to arrange different sections is understandable but defining new symbols in the script is not clear to me. ...
1
vote
1answer
1k views

' __exidx_start' and '__exidx_end' what do they do?

Hello I have a linker script in which i found this code "__exidx_start = .;" which sets label value to the value of location counter ".". This label isn't used anywhere within the same linker script. ...
0
votes
1answer
108 views

Default GNU Linker Script name so VIM does Syntax Highlighting

What is the usual suffix for a linker script so that VIM will use syntax-highlighting on it?
1
vote
1answer
927 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) : ...
1
vote
1answer
591 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!
3
votes
1answer
565 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 ...
3
votes
1answer
4k 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: ...
1
vote
1answer
284 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: ...
0
votes
2answers
615 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) ...
2
votes
1answer
10k 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 ...
3
votes
2answers
3k 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
544 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 ...
0
votes
1answer
81 views

Unknown linking error [closed]

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) } ...
4
votes
1answer
1k 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
717 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); ...
9
votes
3answers
5k 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 ...
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 ...