Use the correct names for the init and fini array start symbols in the default Pru...
authorDimitar Dimitrov <dimitar@dinux.eu>
Thu, 9 May 2019 09:26:11 +0000 (10:26 +0100)
committerNick Clifton <nickc@redhat.com>
Thu, 9 May 2019 09:26:11 +0000 (10:26 +0100)
* scripttempl/pru.sc (__init_array_begin, __init_array_begin):
Rename.

ld/ChangeLog
ld/scripttempl/pru.sc

index 6bdc516..9ca4a4e 100644 (file)
@@ -1,3 +1,8 @@
+2019-05-09  Dimitar Dimitrov  <dimitar@dinux.eu>
+
+       * scripttempl/pru.sc (__init_array_begin, __init_array_begin):
+       Rename.
+
 2019-05-08  Pekka Seppänen  <pexu@sourceware.mail.kapsi.fi>
 
        PR 24536
index 933a1f9..9ef7980 100644 (file)
@@ -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 = . ; }