Added linker line in text section for external object files.

This commit is contained in:
jakeg00dwin 2025-03-29 20:05:49 -07:00
parent e1bc0ec65a
commit db5dd3784d

View file

@ -1,11 +1,27 @@
/* Entry Point of program, interrupt vector table in this case.*/
/* IVT: data structure that associates list of interrupt handlers with
* a list of interrupt requests in a table of interrupt vectors.
*/
ENTRY( InterruptVector ) ENTRY( InterruptVector )
/*
* Memory Layout:
* Flash(read execute):
* Ram(read write execute)
*/
MEMORY MEMORY
{ {
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 16K FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 16K
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 2K RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 2K
} }
SECTIONS SECTIONS
{ {
/*
* Initialization section:
* handles startup initialization routines stored in flash.
*/
.init : .init :
{ {
_sinit = .; _sinit = .;
@ -14,6 +30,12 @@ SECTIONS
. = ALIGN(4); . = ALIGN(4);
_einit = .; _einit = .;
} >FLASH AT>FLASH } >FLASH AT>FLASH
/*
* Text Section:
* Contains executable code and read-only data(rodata)
* Stored in flash.
*/
.text : .text :
{ {
. = ALIGN(4); . = ALIGN(4);
@ -22,15 +44,31 @@ SECTIONS
*(.rodata) *(.rodata)
*(.rodata*) *(.rodata*)
*(.gnu.linkonce.t.*) *(.gnu.linkonce.t.*)
/* Include additional object files. */
*(EXTERN(*)) /* Link against external symbols */
. = ALIGN(4); . = ALIGN(4);
} >FLASH AT>FLASH } >FLASH AT>FLASH
/*
* Finalization Section:
* Contains finalization routines, executed before exiting the program.
*/
.fini : .fini :
{ {
KEEP(*(SORT_NONE(.fini))) KEEP(*(SORT_NONE(.fini)))
. = ALIGN(4); . = ALIGN(4);
} >FLASH AT>FLASH } >FLASH AT>FLASH
/*PROVODE: defines a symbol only if it is not already defined elsewhere.*/
PROVIDE( _etext = . ); PROVIDE( _etext = . );
PROVIDE( _eitcm = . ); PROVIDE( _eitcm = . );
/*
* The preinit_array and init_array handle static/global constructors and
* initalizers.
*/
.preinit_array : .preinit_array :
{ {
PROVIDE_HIDDEN (__preinit_array_start = .); PROVIDE_HIDDEN (__preinit_array_start = .);
@ -51,6 +89,8 @@ SECTIONS
KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .dtors)) KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .dtors))
PROVIDE_HIDDEN (__fini_array_end = .); PROVIDE_HIDDEN (__fini_array_end = .);
} >FLASH AT>FLASH } >FLASH AT>FLASH
/* Constructors Section: needed for C++ */
.ctors : .ctors :
{ {
KEEP (*crtbegin.o(.ctors)) KEEP (*crtbegin.o(.ctors))
@ -59,6 +99,8 @@ SECTIONS
KEEP (*(SORT(.ctors.*))) KEEP (*(SORT(.ctors.*)))
KEEP (*(.ctors)) KEEP (*(.ctors))
} >FLASH AT>FLASH } >FLASH AT>FLASH
/* Destructors Section: needed for C++ */
.dtors : .dtors :
{ {
KEEP (*crtbegin.o(.dtors)) KEEP (*crtbegin.o(.dtors))
@ -67,16 +109,27 @@ SECTIONS
KEEP (*(SORT(.dtors.*))) KEEP (*(SORT(.dtors.*)))
KEEP (*(.dtors)) KEEP (*(.dtors))
} >FLASH AT>FLASH } >FLASH AT>FLASH
/* Likely for data alignment.*/
.dalign : .dalign :
{ {
. = ALIGN(4); . = ALIGN(4);
PROVIDE(_data_vma = .); PROVIDE(_data_vma = .);
} >RAM AT>FLASH } >RAM AT>FLASH
/* Likely for dynamic loader alignment.*/
.dlalign : .dlalign :
{ {
. = ALIGN(4); . = ALIGN(4);
PROVIDE(_data_lma = .); PROVIDE(_data_lma = .);
} >FLASH AT>FLASH } >FLASH AT>FLASH
/*
* Data section: Initialized Variables
* contains initialized variables copied from flash to ram at startup.
* `_sdata` and `_edata` mark the start and end of the `.data` section.
*/
.data : .data :
{ {
. = ALIGN(4); . = ALIGN(4);
@ -97,6 +150,11 @@ SECTIONS
. = ALIGN(4); . = ALIGN(4);
PROVIDE( _edata = .); PROVIDE( _edata = .);
} >RAM AT>FLASH } >RAM AT>FLASH
/* BSS Section: Contains uninitialized variables.
* Holds uninited global/static vars. The runtime must zero out this
* section before main function.
*/
.bss : .bss :
{ {
. = ALIGN(4); . = ALIGN(4);