diff options
author | Segher Boessenkool <segher@kernel.crashing.org> | 2007-05-16 08:34:38 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-05-17 07:11:15 -0400 |
commit | 8995ac8702737147115e1c75879a1a2d75627b9e (patch) | |
tree | 1eed5a9c2648021edcd6e8e5256110fcf5d758d7 /arch | |
parent | 847f5976f90d5637a86a826c1c594091d08f3156 (diff) |
[POWERPC] Specify GNUTARGET on $(AR) invocations
Without this, some versions of GNU ar fail to create
an archive index if the object files it is packing
together are of a different object format than ar's
default format (for example, binutils compiled to
default to 64-bit, with 32-bit objects).
Signed-off-by: Segher Boessenkool <segher@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile index d6014a67694b..6238b5875fd1 100644 --- a/arch/powerpc/Makefile +++ b/arch/powerpc/Makefile | |||
@@ -29,7 +29,7 @@ CROSS32CC := $(CC) -m32 | |||
29 | CROSS32AS := $(AS) -a32 | 29 | CROSS32AS := $(AS) -a32 |
30 | CROSS32LD := $(LD) -m elf32ppc | 30 | CROSS32LD := $(LD) -m elf32ppc |
31 | CROSS32OBJCOPY := $(OBJCOPY) | 31 | CROSS32OBJCOPY := $(OBJCOPY) |
32 | CROSS32AR := $(AR) | 32 | CROSS32AR := GNUTARGET=elf32-powerpc $(AR) |
33 | endif | 33 | endif |
34 | endif | 34 | endif |
35 | 35 | ||
@@ -58,6 +58,7 @@ ifeq ($(HAS_BIARCH),y) | |||
58 | override AS += -a$(SZ) | 58 | override AS += -a$(SZ) |
59 | override LD += -m elf$(SZ)ppc | 59 | override LD += -m elf$(SZ)ppc |
60 | override CC += -m$(SZ) | 60 | override CC += -m$(SZ) |
61 | override AR := GNUTARGET=elf$(SZ)-powerpc $(AR) | ||
61 | endif | 62 | endif |
62 | 63 | ||
63 | LDFLAGS_vmlinux := -Bstatic | 64 | LDFLAGS_vmlinux := -Bstatic |