From 02150d90e5b46decc824605ed94316782f334a2b Mon Sep 17 00:00:00 2001 From: Lephe Date: Sun, 21 Aug 2022 20:11:45 +0200 Subject: [PATCH] ld: properly link .bss.* sections --- fx9860g.ld | 2 +- fxcg50.ld | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fx9860g.ld b/fx9860g.ld index f66b8f2..f005adf 100644 --- a/fx9860g.ld +++ b/fx9860g.ld @@ -127,7 +127,7 @@ SECTIONS .bss (NOLOAD) : { _rbss = . ; - *(.bss COMMON) + *(.bss .bss.* COMMON) *(B R) . = ALIGN(16); diff --git a/fxcg50.ld b/fxcg50.ld index 0874c49..4d26116 100644 --- a/fxcg50.ld +++ b/fxcg50.ld @@ -101,7 +101,7 @@ SECTIONS .bss (NOLOAD) : { _rbss = . ; - *(.bss COMMON) + *(.bss .bss.* COMMON) . = ALIGN(16); } > ram :NONE