diff options
author | James Bottomley <JBottomley@Parallels.com> | 2012-06-05 13:54:09 +0900 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2012-06-05 14:10:23 +0900 |
commit | 4c01acc01d77e8df5727247aa5ef5912c00256bf (patch) | |
tree | 70f9535bdb0445b339d051c5253a829eb35d18b2 /arch/parisc | |
parent | 731455624fe5af906877aae80fb107daccaa9599 (diff) | |
download | linux-4c01acc01d77e8df5727247aa5ef5912c00256bf.tar.bz2 |
[PARISC] fix code to find libgcc
Sam broke this with
commit 1f2bfbd00e466ff3489b2ca5cc75b1cccd14c123
Author: Sam Ravnborg <sam@ravnborg.org>
Date: Sat May 5 10:18:41 2012 +0200
kbuild: link of vmlinux moved to a script
But we should be deriving the location of libgcc in the same way as all
the other archs, so fix by adding a LIBGCC variable which is evaluated
in the makefile
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'arch/parisc')
-rw-r--r-- | arch/parisc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/parisc/Makefile b/arch/parisc/Makefile index dbc3850b1d0d..5707f1a62341 100644 --- a/arch/parisc/Makefile +++ b/arch/parisc/Makefile @@ -21,6 +21,7 @@ KBUILD_DEFCONFIG := default_defconfig NM = sh $(srctree)/arch/parisc/nm CHECKFLAGS += -D__hppa__=1 +LIBGCC = $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name) MACHINE := $(shell uname -m) ifeq ($(MACHINE),parisc*) @@ -79,7 +80,7 @@ kernel-y := mm/ kernel/ math-emu/ kernel-$(CONFIG_HPUX) += hpux/ core-y += $(addprefix arch/parisc/, $(kernel-y)) -libs-y += arch/parisc/lib/ `$(CC) -print-libgcc-file-name` +libs-y += arch/parisc/lib/ $(LIBGCC) drivers-$(CONFIG_OPROFILE) += arch/parisc/oprofile/ |