diff --git a/programs/develop/golang/link.ld b/programs/develop/golang/link.ld deleted file mode 100644 index 5514ad9400..0000000000 --- a/programs/develop/golang/link.ld +++ /dev/null @@ -1,28 +0,0 @@ -ENTRY(start) -SECTIONS -{ - .text 0x0000000: { - *(.text) - } -.rdata ALIGN(16) : - { - *(.rdata) - *(SORT(.rdata$*)) - ___RUNTIME_PSEUDO_RELOC_LIST__ = .; - __RUNTIME_PSEUDO_RELOC_LIST__ = .; - *(.rdata_runtime_pseudo_reloc) - ___RUNTIME_PSEUDO_RELOC_LIST_END__ = .; - __RUNTIME_PSEUDO_RELOC_LIST_END__ = .; - } - - .data : { - *(.data) - } - - .bss : { - *(.bss) - } - - - end = .; -}