diff options
author | Steve Chamberlain <sac@cygnus> | 1992-03-02 22:22:59 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1992-03-02 22:22:59 +0000 |
commit | 76971f0da2260c069b0ae13740627dba1b39487b (patch) | |
tree | b2584c6a655cf348429122bec9c33f0f9383023d /ld/i960.sc-sh | |
parent | 4ef09e3613ecc3849c0008102fc3871324caf7fd (diff) | |
download | gdb-76971f0da2260c069b0ae13740627dba1b39487b.zip gdb-76971f0da2260c069b0ae13740627dba1b39487b.tar.gz gdb-76971f0da2260c069b0ae13740627dba1b39487b.tar.bz2 |
Modifed to care about semi colons again, newlines are ignored - sorry
Per.
Diffstat (limited to 'ld/i960.sc-sh')
-rwxr-xr-x | ld/i960.sc-sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ld/i960.sc-sh b/ld/i960.sc-sh index 0e24bb4..6d778a6 100755 --- a/ld/i960.sc-sh +++ b/ld/i960.sc-sh @@ -5,19 +5,19 @@ SECTIONS { ${GLD_STYLE+ CREATE_OBJECT_SYMBOLS} *(.text) - ${RELOCATING+ _etext = .} + ${RELOCATING+ _etext = .}; } .data : { *(.data) - ${RELOCATING+ _edata = .} + ${RELOCATING+ _edata = .}; } .bss : { - ${RELOCATING+ _bss_start = .} + ${RELOCATING+ _bss_start = .}; *(.bss) *(COMMON) - ${RELOCATING+ _end = .} + ${RELOCATING+ _end = .}; } } EOF |