From 5ed0035377d62da7d33072f10ea04ede27422455 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 14 Jul 2022 14:41:03 +0200 Subject: bsps: Sort .noinit* sections Sort the .noinit* input sections by name first, then by alignment if two sections have the same name. This allows the placement of begin/end symbols to initialize some areas with a special value. Update #4678. --- bsps/moxie/moxiesim/start/linkcmds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bsps/moxie') diff --git a/bsps/moxie/moxiesim/start/linkcmds b/bsps/moxie/moxiesim/start/linkcmds index e49aece385..2cfaa86fdd 100644 --- a/bsps/moxie/moxiesim/start/linkcmds +++ b/bsps/moxie/moxiesim/start/linkcmds @@ -231,7 +231,7 @@ SECTIONS _bss_end__ = . ; __bss_end__ = . ; __end__ = . ; PROVIDE (end = .); .noinit (NOLOAD) : { - *(.noinit*) + *(SORT_BY_NAME (SORT_BY_ALIGNMENT (.noinit*))) } .rtemsstack (NOLOAD) : { *(SORT(.rtemsstack.*)) -- cgit v1.2.3