Duplicate lables for the m68k linker that wants the symbols without a

preceeding underscore!


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5758 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2005-02-03 08:36:18 +00:00
parent 142c034138
commit 72ec431fc2

View file

@ -106,15 +106,18 @@ SECTIONS
.mp3buf : .mp3buf :
{ {
_mp3buffer = .; _mp3buffer = .;
mp3buffer = .;
} > DRAM } > DRAM
.mp3end ENDADDR: .mp3end ENDADDR:
{ {
mp3end = .;
_mp3end = .; _mp3end = .;
} > DRAM } > DRAM
.plugin ENDADDR: .plugin ENDADDR:
{ {
_pluginbuf = .; _pluginbuf = .;
pluginbuf = .;
} }
} }