diff options
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 6 | ||||
-rw-r--r-- | ld/scripttempl/elfarc.sc | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 73d0a98..5b26496 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2020-12-01 H.J. Lu <hongjiu.lu@intel.com> + + PR ld/26970 + * scripttempl/elfarc.sc (TEXT_START_ADDR): New. Add SEGMENT_START. + (SHLIB_TEXT_START_ADDR): Likewise. + 2020-12-01 Alan Modra <amodra@gmail.com> * testsuite/ld-elf/elf.exp: Set ASFLAGS for tic6x. diff --git a/ld/scripttempl/elfarc.sc b/ld/scripttempl/elfarc.sc index ebf40b8..3bb0c2f 100644 --- a/ld/scripttempl/elfarc.sc +++ b/ld/scripttempl/elfarc.sc @@ -172,6 +172,9 @@ STACK=" .stack ${RELOCATING-0}${RELOCATING+${STACK_ADDR}} : *(.stack) }" +TEXT_START_ADDR="SEGMENT_START(\"text-segment\", ${TEXT_START_ADDR})" +SHLIB_TEXT_START_ADDR="SEGMENT_START(\"text-segment\", ${SHLIB_TEXT_START_ADDR:-0})" + # if this is for an embedded system, don't add SIZEOF_HEADERS. if [ -z "$EMBEDDED" ]; then test -z "${TEXT_BASE_ADDRESS}" && TEXT_BASE_ADDRESS="${TEXT_START_ADDR} + SIZEOF_HEADERS" |