[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20080611145057.GA10487@uranus.ravnborg.org>
Date: Wed, 11 Jun 2008 16:50:57 +0200
From: Sam Ravnborg <sam@...nborg.org>
To: Kamalesh Babulal <kamalesh@...ux.vnet.ibm.com>
Cc: Stephen Rothwell <sfr@...b.auug.org.au>,
linux-next@...r.kernel.org, LKML <linux-kernel@...r.kernel.org>,
linux-ia64@...r.kernel.org, Andy Whitcroft <apw@...dowen.org>
Subject: Re: [BUILD-FAILURE] linux-next: Tree for June 11 - on ia64
On Wed, Jun 11, 2008 at 08:02:14PM +0530, Kamalesh Babulal wrote:
> Hi Stephen,
>
> The next-20080611 kernel build fails on ia64 machine
>
> AR arch/ia64/lib/lib.a
> LD vmlinux.o
> MODPOST vmlinux.o
> GEN .version
> CHK include/linux/compile.h
> UPD include/linux/compile.h
> CC init/version.o
> LD init/built-in.o
> LD .tmp_vmlinux
> LD vmlinux
> ld: .tmp_kallsyms.o: linking constant-gp files with non-constant-gp files
> ld: failed to merge target specific data of file .tmp_kallsyms.o
> make: *** [vmlinux] Error 1
A kbuild bug..
We do a local build of .tmp_kallsyms.o and we do not pass -mconstant-gp
Can you please try if the following patch fixes it.
Sam
diff --git a/scripts/link-vmlinux.sh b/scripts/link-vmlinux.sh
index b9ecff5..b335700 100644
--- a/scripts/link-vmlinux.sh
+++ b/scripts/link-vmlinux.sh
@@ -128,7 +128,7 @@ if [ "${CONFIG_KALLSYMS}" = "y" ]; then
# Do an extra pass to link in kallsyms data
${NM} -n .tmp_vmlinux | scripts/kallsyms > .tmp_kallsyms.S
- ${CC} ${KBUILD_AFLAGS} ${KBUILD_CPPFLAGS} -c -o .tmp_kallsyms.o \
+ ${CC} ${KBUILD_AFLAGS} ${AFLAGS_KERNEL} ${KBUILD_CPPFLAGS} -c -o .tmp_kallsyms.o \
.tmp_kallsyms.S
# link in kalll symbols
tell LD vmlinux
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists