From b4381dac9b31607d2947d8fb28c2c2cf397d0211 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 19 Dec 2002 23:40:53 +0000 Subject: 2002-12-19 Joel Sherrill * start/start.S: Per PR329 now compiles with GNU tools. * startup/linkcmds: New file. Now almost links. --- c/src/lib/libbsp/hppa1.1/simhppa/startup/linkcmds | 35 +++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 c/src/lib/libbsp/hppa1.1/simhppa/startup/linkcmds (limited to 'c/src/lib/libbsp/hppa1.1/simhppa/startup/linkcmds') diff --git a/c/src/lib/libbsp/hppa1.1/simhppa/startup/linkcmds b/c/src/lib/libbsp/hppa1.1/simhppa/startup/linkcmds new file mode 100644 index 0000000000..57d1f5c96a --- /dev/null +++ b/c/src/lib/libbsp/hppa1.1/simhppa/startup/linkcmds @@ -0,0 +1,35 @@ +/* Script for -n: mix text and data on same page */ +OUTPUT_FORMAT("elf32-hppa") +OUTPUT_ARCH(hppa) +ENTRY("$START$") +SEARCH_DIR("/opt/rtems/hppa1.1-rtems/lib"); +SECTIONS +{ + .text 0x1000 +0x1000: + { + __text_start = .; + CREATE_OBJECT_SYMBOLS + *(.PARISC.stubs) + *(.text) + etext = .; + _etext = .; + } + . = 0x40000000; + .data : + { + . = . + 0x1000 ; + __data_start = .; + *(.data) + CONSTRUCTORS + edata = .; + _edata = .; + } + . = 0x40000000 + SIZEOF(.data); + .bss : + { + *(.bss) + *(COMMON) + end = . ; + _end = . ; + } +} -- cgit v1.2.3