diff --git a/soc/runtime/ksupport.ld b/soc/runtime/ksupport.ld index 0aec5ca64..3cc585399 100644 --- a/soc/runtime/ksupport.ld +++ b/soc/runtime/ksupport.ld @@ -24,17 +24,6 @@ SECTIONS _etext = .; } > ksupport - .got : - { - _GLOBAL_OFFSET_TABLE_ = .; - *(.got) - } > ksupport - - .got.plt : - { - *(.got.plt) - } > ksupport - .rodata : { . = ALIGN(4); diff --git a/soc/runtime/linker.ld b/soc/runtime/linker.ld index d0c3a6558..4a4217f1e 100644 --- a/soc/runtime/linker.ld +++ b/soc/runtime/linker.ld @@ -26,17 +26,6 @@ SECTIONS _etext = .; } > runtime - .got : - { - _GLOBAL_OFFSET_TABLE_ = .; - *(.got) - } > runtime - - .got.plt : - { - *(.got.plt) - } > runtime - .rodata : { . = ALIGN(4);