diff mbox series

[mips-next,3/4] MIPS: vmlinux.lds.S: add ".gnu.attributes" to DISCARDS

Message ID 20210104122016.47308-3-alobakin@pm.me
State New
Headers show
Series MIPS: vmlinux.lds.S sections fix & cleanup | expand

Commit Message

Alexander Lobakin Jan. 4, 2021, 12:20 p.m. UTC
Discard GNU attributes at link time as kernel doesn't use it at all.
Solves a dozen of the following ld warnings (one per every file):

mips-alpine-linux-musl-ld: warning: orphan section `.gnu.attributes'
from `arch/mips/kernel/head.o' being placed in section
`.gnu.attributes'
mips-alpine-linux-musl-ld: warning: orphan section `.gnu.attributes'
from `init/main.o' being placed in section `.gnu.attributes'

Signed-off-by: Alexander Lobakin <alobakin@pm.me>
---
 arch/mips/kernel/vmlinux.lds.S | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/arch/mips/kernel/vmlinux.lds.S b/arch/mips/kernel/vmlinux.lds.S
index 1c3c2e903062..8ac95269124a 100644
--- a/arch/mips/kernel/vmlinux.lds.S
+++ b/arch/mips/kernel/vmlinux.lds.S
@@ -222,6 +222,7 @@  SECTIONS
 		*(.MIPS.abiflags)
 		*(.MIPS.options)
 		*(.eh_frame)
+		*(.gnu.attributes)
 		*(.options)
 		*(.pdr)
 		*(.reginfo)