From 0723903ba80e9d0756ca678cfd988e36551d70f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Le=20Calvar?= <theo.le-calvar@imt-atlantique.fr> Date: Mon, 22 Aug 2022 10:35:42 +0200 Subject: [PATCH] fix linker error in container --- support/sextant.lds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/sextant.lds b/support/sextant.lds index bd05c32..6b7b65a 100644 --- a/support/sextant.lds +++ b/support/sextant.lds @@ -85,7 +85,7 @@ SECTIONS __e_load = .; /* Beginning of the BSS section (global uninitialized data) */ - .bss SIZEOF(.rodata) + ADDR(.rodata) +600 : + .bss SIZEOF(.rodata) + ADDR(.rodata) + 10000 : { *(.bss) *(COMMON) -- GitLab