Support building runsc with legacy GNU linker

This commit enables building with the legacy GNU linker that emits the
.note.gnu.property section which conflicts with the .crblob section
inside the sysmsg linker script.
This commit is contained in:
B. Blechschmidt
2023-02-28 21:35:30 +01:00
parent 802c800ebc
commit 8076b9ab44
+1 -1
View File
@@ -34,6 +34,6 @@ SECTIONS
} =0x00000000,
/DISCARD/ : {
*(.interp) *(.gnu.hash) *(.hash) *(.dynamic) *(.dynsym) *(.dynstr) *(.rela.dyn) *(.eh_frame)
*(.interp) *(.gnu.hash) *(.hash) *(.dynamic) *(.dynsym) *(.dynstr) *(.rela.dyn) *(.eh_frame) *(.note.gnu.property)
}
}