mirror of
https://github.com/apache/nuttx.git
synced 2026-08-27 12:20:46 +00:00
ESP32: Update linker script to use naming expected by CXX initialization
This commit is contained in:
parent
4d0b0e44f1
commit
1eb15d0d4e
1 changed files with 2 additions and 2 deletions
|
|
@ -123,12 +123,12 @@ SECTIONS
|
|||
. = (. + 3) & ~ 3;
|
||||
|
||||
/* C++ constructor and destructor tables, properly ordered: */
|
||||
__init_array_start = ABSOLUTE(.);
|
||||
__sinit = ABSOLUTE(.);
|
||||
KEEP (*crtbegin.o(.ctors))
|
||||
KEEP (*(EXCLUDE_FILE (*crtend.o) .ctors))
|
||||
KEEP (*(SORT(.ctors.*)))
|
||||
KEEP (*(.ctors))
|
||||
__init_array_end = ABSOLUTE(.);
|
||||
_einit = ABSOLUTE(.);
|
||||
KEEP (*crtbegin.o(.dtors))
|
||||
KEEP (*(EXCLUDE_FILE (*crtend.o) .dtors))
|
||||
KEEP (*(SORT(.dtors.*)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue