mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 07:08:01 +08:00
Correct syntax errors which only appeared when relocating.
This commit is contained in:
@ -22,7 +22,7 @@ SECTIONS
|
|||||||
.data ${RELOCATING+ .} : {
|
.data ${RELOCATING+ .} : {
|
||||||
*(.data)
|
*(.data)
|
||||||
}
|
}
|
||||||
${RELOCATING+ _gp = . + 0x8000};
|
${RELOCATING+ _gp = . + 0x8000;}
|
||||||
.lit8 ${RELOCATING+ .} : {
|
.lit8 ${RELOCATING+ .} : {
|
||||||
*(.lit8)
|
*(.lit8)
|
||||||
}
|
}
|
||||||
@ -32,7 +32,7 @@ SECTIONS
|
|||||||
.sdata ${RELOCATING+ .} : {
|
.sdata ${RELOCATING+ .} : {
|
||||||
*(.sdata)
|
*(.sdata)
|
||||||
}
|
}
|
||||||
${RELOCATING+ edata = .};
|
${RELOCATING+ edata = .;}
|
||||||
.sbss ${RELOCATING+ .} : {
|
.sbss ${RELOCATING+ .} : {
|
||||||
*(.sbss)
|
*(.sbss)
|
||||||
}
|
}
|
||||||
@ -40,6 +40,6 @@ SECTIONS
|
|||||||
*(.bss)
|
*(.bss)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
}
|
}
|
||||||
${RELOCATING+ end = .};
|
${RELOCATING+ end = .;}
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
Reference in New Issue
Block a user