123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- /* NOTE: Adapted from cortex-m/link.x */
- INCLUDE memory.x
- PROVIDE(_stack_start = ORIGIN(RAM) + LENGTH(RAM));
- SECTIONS
- {
- PROVIDE(_stext = ORIGIN(FLASH));
- .text _stext : ALIGN(4)
- {
- /* Put reset handler first in .text section so it ends up as the entry */
- /* point of the program. */
- KEEP(*(.init));
- KEEP(*(.init.rust));
- KEEP(*(.trap));
- KEEP(*(.trap.rust));
- *(.text .text.*);
- } > FLASH
- .rodata : ALIGN(4)
- {
- *(.rodata .rodata.*);
- . = ALIGN(4);
- } > FLASH
- PROVIDE(_sbss = ORIGIN(RAM));
- .bss _sbss : ALIGN(4)
- {
- *(.bss .bss.*);
- . = ALIGN(4);
- _ebss = .;
- } > RAM
- .data _ebss : ALIGN(4)
- {
- _sidata = LOADADDR(.data);
- _sdata = .;
- /* Must be called __global_pointer$ for linker relaxations to work. */
- PROVIDE(__global_pointer$ = . + 0x800);
- *(.data .data.*);
- . = ALIGN(4);
- _edata = .;
- } > RAM AT > FLASH /* LLD fails on AT > FLASH */
- PROVIDE(_heap_size = 0);
- /* fictitious region that represents the memory available for the heap */
- .heap _edata (INFO) : ALIGN(4)
- {
- _sheap = .;
- . += _heap_size;
- . = ALIGN(4);
- _eheap = .;
- }
- /* fictitious region that represents the memory available for the stack */
- .stack _eheap (INFO) : ALIGN(4)
- {
- _estack = .;
- . = _stack_start;
- _sstack = .;
- }
- /* fake output .got section */
- /* Dynamic relocations are unsupported. This section is only used to detect
- relocatable code in the input files and raise an error if relocatable code
- is found */
- .got :
- {
- _sgot = .;
- KEEP(*(.got .got.*));
- _egot = .;
- } > RAM AT > FLASH /* LLD fails on AT > FLASH */
- /* Due to an unfortunate combination of legacy concerns,
- toolchain drawbacks, and insufficient attention to detail,
- rustc has no choice but to mark .debug_gdb_scripts as allocatable.
- We really do not want to upload it to our target, so we
- remove the allocatable bit. Unfortunately, it appears
- that the only way to do this in a linker script is
- the extremely obscure "INFO" output section type specifier. */
- /* a rustc hack will force the program to read the first byte of this section,
- so we'll set the (fake) start address of this section to something we're
- sure can be read at runtime: the start of the .text section */
- /* LLD fails to parse _stext (INFO) */
- .debug_gdb_scripts _stext (INFO) : {
- KEEP(*(.debug_gdb_scripts))
- }
- }
- /* Do not exceed this mark in the error messages below | */
- ASSERT(_sgot == _egot, "
- .got section detected in the input files. Dynamic relocations are not
- supported. If you are linking to C code compiled using the `gcc` crate
- then modify your build script to compile the C code _without_ the
- -fPIC flag. See the documentation of the `gcc::Config.fpic` method for
- details.");
|