From 336896603ffb63021dfa82f58796b21fd497ebf1 Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Mon, 15 Jun 2020 16:04:02 +0200 Subject: [PATCH] bios/linker: Place .got in .rodata. --- litex/soc/software/bios/linker.ld | 1 + 1 file changed, 1 insertion(+) diff --git a/litex/soc/software/bios/linker.ld b/litex/soc/software/bios/linker.ld index ee88f2e6d..a29eb4901 100644 --- a/litex/soc/software/bios/linker.ld +++ b/litex/soc/software/bios/linker.ld @@ -24,6 +24,7 @@ SECTIONS _frodata = .; *(.rodata .rodata.* .gnu.linkonce.r.*) *(.rodata1) + *(.got .got.*) /* Make sure the file is aligned on disk as well as in memory; CRC calculation requires that. */