diff options
author | Marcus Comstedt | 2005-08-14 14:46:42 +0000 |
---|---|---|
committer | Marcus Comstedt | 2005-08-14 14:46:42 +0000 |
commit | a1e4dd13903145fd9db5100ab654bb5ca298b12c (patch) | |
tree | 82bab45837bc40b0d1c265c6bcb0ef632669394e | |
parent | 8bd14c733785c32dca2fdb96f0a68a86f13a03d3 (diff) | |
download | scummvm-rg350-a1e4dd13903145fd9db5100ab654bb5ca298b12c.tar.gz scummvm-rg350-a1e4dd13903145fd9db5100ab654bb5ca298b12c.tar.bz2 scummvm-rg350-a1e4dd13903145fd9db5100ab654bb5ca298b12c.zip |
Force a single PHDR.
svn-id: r18684
-rw-r--r-- | backends/dc/plugin.x | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/backends/dc/plugin.x b/backends/dc/plugin.x index 80550b0299..2c8469a335 100644 --- a/backends/dc/plugin.x +++ b/backends/dc/plugin.x @@ -1,5 +1,9 @@ OUTPUT_FORMAT("elf32-shl", "elf32-shl", "elf32-shl") OUTPUT_ARCH(sh) +PHDRS +{ + plugin PT_LOAD ; +} SECTIONS { . = 0; @@ -7,7 +11,7 @@ SECTIONS { *(.text .stub .text.* .gnu.linkonce.t.*) *(.gnu.warning) - } =0 + } :plugin =0 .rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) } .rodata1 : { *(.rodata1) } .sdata2 : { *(.sdata2 .sdata2.* .gnu.linkonce.s2.*) } |