Linux PARISC architecture development
 help / color / mirror / Atom feed
* [PATCH] parisc: Merge millicode routines via linker script
@ 2017-07-09 20:50 Helge Deller
  0 siblings, 0 replies; only message in thread
From: Helge Deller @ 2017-07-09 20:50 UTC (permalink / raw)
  To: linux-parisc, James Bottomley, John David Anglin

When compiling the 4.13-rc kernel I got those linker errors:
libgcc2.c:(.text+0x110): relocation truncated to fit: R_PARISC_PCREL22F against symbol `$$divU'
	defined in .text.div section in /usr/lib/gcc/hppa64-linux-gnu/4.9.2/libgcc.a(_divU.o)
hppa64-linux-gnu-ld: /usr/lib/gcc/hppa64-linux-gnu/4.9.2/libgcc.a(_moddi3.o)(.text+0x174): cannot reach $$divU

Avoid such errors by bundling the millicode routines in the linker script.

Signed-off-by: Helge Deller <deller@gmx.de>

diff --git a/arch/parisc/kernel/vmlinux.lds.S b/arch/parisc/kernel/vmlinux.lds.S
index 3d6ef1b..ffe2cbf 100644
--- a/arch/parisc/kernel/vmlinux.lds.S
+++ b/arch/parisc/kernel/vmlinux.lds.S
@@ -78,6 +78,8 @@ SECTIONS
 		*(.text.sys_exit)
 		*(.text.do_sigaltstack)
 		*(.text.do_fork)
+		*(.text.div)
+		*($$*)			/* millicode routines */
 		*(.text.*)
 		*(.fixup)
 		*(.lock.text)		/* out-of-line lock text */

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-07-09 20:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-09 20:50 [PATCH] parisc: Merge millicode routines via linker script Helge Deller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox