diff options
author | Steve Chamberlain <sac@cygnus> | 1995-08-16 23:29:18 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1995-08-16 23:29:18 +0000 |
commit | a048254ccefb2f9737ca6c9687871daaa1637e96 (patch) | |
tree | cf47b4bf37d5bcd3703b268f8ad06b8be02dc296 /ld/scripttempl | |
parent | ee473c97b50fd5743d7f4d07bc3b468113e6674e (diff) | |
download | gdb-a048254ccefb2f9737ca6c9687871daaa1637e96.zip gdb-a048254ccefb2f9737ca6c9687871daaa1637e96.tar.gz gdb-a048254ccefb2f9737ca6c9687871daaa1637e96.tar.bz2 |
* scripttempl/armpe.sc: Always start code at 0x401000, even
Diffstat (limited to 'ld/scripttempl')
-rw-r--r-- | ld/scripttempl/armpe.sc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ld/scripttempl/armpe.sc b/ld/scripttempl/armpe.sc index 11a3a1a..2f642ac 100644 --- a/ld/scripttempl/armpe.sc +++ b/ld/scripttempl/armpe.sc @@ -71,14 +71,20 @@ SECTIONS *(.reloc) ; } + + .drectve BLOCK (0x1000) : + { + ${RELOCATING+ *(.drectve); } + } .junk BLOCK(0x1000) : { *(.debug\$S) *(.debug\$T) *(.debug\$F) - *(.drectve) ; } + + .bss BLOCK(0x1000) : { *(.bss) |