lfn
serial
ticket/834-toolchain-update
topic/msim-upgrade
topic/simplify-dev-export
Last change
on this file since efb9fd08 was 4646710, checked in by Martin Decky <martin@…>, 8 years ago |
replace objcopy with mkarray.py
(objcopy is notoriously problematic due to the uncontrolable way how it generates the object files, with what flags, etc.)
|
-
Property mode
set to
100644
|
File size:
533 bytes
|
Line | |
---|
1 | ENTRY(start)
|
---|
2 |
|
---|
3 | SECTIONS {
|
---|
4 | #if defined(MACHINE_msim)
|
---|
5 | . = 0xbfc00000;
|
---|
6 | #elif defined(MACHINE_lmalta) || defined(MACHINE_bmalta)
|
---|
7 | . = 0x80103000;
|
---|
8 | #endif
|
---|
9 | .text : {
|
---|
10 | *(BOOTSTRAP);
|
---|
11 | *(.text);
|
---|
12 | }
|
---|
13 | .data : {
|
---|
14 | *(.data); /* initialized data */
|
---|
15 | *(.rodata);
|
---|
16 | *(.rodata.*);
|
---|
17 | *(.sdata);
|
---|
18 | *(.reginfo);
|
---|
19 | *(.sbss);
|
---|
20 | *(.scommon);
|
---|
21 | *(.bss); /* uninitialized static variables */
|
---|
22 | *(COMMON); /* global variables */
|
---|
23 | *(.components);
|
---|
24 | }
|
---|
25 |
|
---|
26 | /DISCARD/ : {
|
---|
27 | *(.gnu.*);
|
---|
28 | *(.mdebug*);
|
---|
29 | *(.pdr);
|
---|
30 | *(.comment);
|
---|
31 | *(.note);
|
---|
32 | }
|
---|
33 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.