From dd3189990b1d918b3a9e482ec6e9cc9a8b9e8fe9 Mon Sep 17 00:00:00 2001 From: Dimitar Dimitrov Date: Thu, 9 May 2019 10:26:11 +0100 Subject: Use the correct names for the init and fini array start symbols in the default Pru linker script. * scripttempl/pru.sc (__init_array_begin, __init_array_begin): Rename. --- ld/scripttempl/pru.sc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ld/scripttempl') diff --git a/ld/scripttempl/pru.sc b/ld/scripttempl/pru.sc index 933a1f9..9ef7980 100644 --- a/ld/scripttempl/pru.sc +++ b/ld/scripttempl/pru.sc @@ -119,11 +119,11 @@ SECTIONS /* CRT is prepared for constructor/destructor table to have a "valid" NULL address. */ - ${CONSTRUCTING+ __init_array_begin = . ; } + ${CONSTRUCTING+ __init_array_start = . ; } ${CONSTRUCTING+ KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*)))} ${CONSTRUCTING+ KEEP (*(.init_array))} ${CONSTRUCTING+ __init_array_end = . ; } - ${CONSTRUCTING+ __fini_array_begin = . ; } + ${CONSTRUCTING+ __fini_array_start = . ; } ${CONSTRUCTING+ KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*)))} ${CONSTRUCTING+ KEEP (*(.fini_array))} ${CONSTRUCTING+ __fini_array_end = . ; } -- cgit v1.1