mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
Correct syntax errors which only appeared when relocating.
This commit is contained in:
parent
c3fe0c418c
commit
388d890471
@ -22,7 +22,7 @@ SECTIONS
|
||||
.data ${RELOCATING+ .} : {
|
||||
*(.data)
|
||||
}
|
||||
${RELOCATING+ _gp = . + 0x8000};
|
||||
${RELOCATING+ _gp = . + 0x8000;}
|
||||
.lit8 ${RELOCATING+ .} : {
|
||||
*(.lit8)
|
||||
}
|
||||
@ -32,7 +32,7 @@ SECTIONS
|
||||
.sdata ${RELOCATING+ .} : {
|
||||
*(.sdata)
|
||||
}
|
||||
${RELOCATING+ edata = .};
|
||||
${RELOCATING+ edata = .;}
|
||||
.sbss ${RELOCATING+ .} : {
|
||||
*(.sbss)
|
||||
}
|
||||
@ -40,6 +40,6 @@ SECTIONS
|
||||
*(.bss)
|
||||
*(COMMON)
|
||||
}
|
||||
${RELOCATING+ end = .};
|
||||
${RELOCATING+ end = .;}
|
||||
}
|
||||
EOF
|
||||
|
Loading…
Reference in New Issue
Block a user