12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /* Script for -r */
- /* Copyright (C) 2014-2020 Free Software Foundation, Inc.
- Copying and distribution of this script, with or without modification,
- are permitted in any medium without royalty provided the copyright
- notice and this notice are preserved. */
- OUTPUT_FORMAT("ecoff-littlealpha")
- SEARCH_DIR("=/usr/alpha-linux-gnuecoff/lib");
- SECTIONS
- {
- .text : {
- *(.text)
- }
- .rdata : {
- *(.rdata)
- }
- .rconst : {
- *(.rconst)
- }
- .pdata : {
- *(.pdata)
- }
- .data : {
- *(.data)
- }
- .xdata : {
- *(.xdata)
- }
- .lit8 : {
- *(.lit8)
- }
- .lita : {
- *(.lita)
- }
- .sdata : {
- *(.sdata)
- }
- .sbss : {
- *(.sbss)
- }
- .bss : {
- *(.bss)
- }
- }
|