diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2002-10-07 16:24:00 +0000 |
---|---|---|
committer | Richard Sandiford <rdsandiford@googlemail.com> | 2002-10-07 16:24:00 +0000 |
commit | c50e45772461427fcfaffbda0e3f6c94d9f5efc1 (patch) | |
tree | f0539961eec862cb64b3992b1d934f8a181e66cf /libgloss/mips/ddb-kseg0.ld | |
parent | bc63ea872c24c2e362dc64b7063cc90c9b49935d (diff) | |
download | cygnal-c50e45772461427fcfaffbda0e3f6c94d9f5efc1.tar.gz cygnal-c50e45772461427fcfaffbda0e3f6c94d9f5efc1.tar.bz2 cygnal-c50e45772461427fcfaffbda0e3f6c94d9f5efc1.zip |
* mips/ddb.ld: KEEP .init and .fini.
* mips/ddb-kseg0.ld: Likewise.
Diffstat (limited to 'libgloss/mips/ddb-kseg0.ld')
-rw-r--r-- | libgloss/mips/ddb-kseg0.ld | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgloss/mips/ddb-kseg0.ld b/libgloss/mips/ddb-kseg0.ld index 8ec1e8e1a..939510d46 100644 --- a/libgloss/mips/ddb-kseg0.ld +++ b/libgloss/mips/ddb-kseg0.ld @@ -33,7 +33,7 @@ SECTIONS . = 0x80100000; .text : { _ftext = . ; - *(.init) + KEEP (*(.init)) eprol = .; *(.text) *(.text.*) @@ -43,7 +43,7 @@ SECTIONS PROVIDE (__runtime_reloc_start = .); *(.rel.sdata) PROVIDE (__runtime_reloc_stop = .); - *(.fini) + KEEP (*(.fini)) etext = .; _etext = .; } |