* [PATCH] powerpc - Use KBUILD_CFLAGS and similar
@ 2008-03-02 19:06 Bastian Blank
2008-04-07 3:27 ` Paul Mackerras
0 siblings, 1 reply; 2+ messages in thread
From: Bastian Blank @ 2008-03-02 19:06 UTC (permalink / raw)
To: linuxppc-dev
[-- Attachment #1: Type: text/plain, Size: 1408 bytes --]
Hi folks
The attached patch changes the powerpc main Makefile from using the override
make directive to KBUILD_CFLAGS and similar.
The override approach breaks with both variants "CC=gcc-4.3 make" and
"make CC=gcc-4.3". The first ignores the given value completely because
the toplevel Makefile includes a CC definition:
| $ CC="gcc-4.3" make V=1
[...]
| gcc -m64 -Wp,-MD,init/.main.o.d
The second does not add -m64:
| $ make CC="gcc-4.3" V=1
[...]
| gcc-4.3 -Wp,-MD,arch/powerpc/kernel/.asm-offsets.s.d
The patch changes the CC, AS and LD overrides into changes of
KBUILD_CFLAGS, KBUILD_AFLAGS and LDFLAGS similar to arch/s390/Makefile.
Signed-off-by: Bastian Blank <waldi@debian.org>
diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile
index 1c6ce35..b267c60 100644
--- a/arch/powerpc/Makefile
+++ b/arch/powerpc/Makefile
@@ -63,9 +63,9 @@ endif
UTS_MACHINE := $(OLDARCH)
ifeq ($(HAS_BIARCH),y)
-override AS += -a$(CONFIG_WORD_SIZE)
-override LD += -m elf$(CONFIG_WORD_SIZE)ppc
-override CC += -m$(CONFIG_WORD_SIZE)
+LDFLAGS := -m elf$(CONFIG_WORD_SIZE)ppc
+KBUILD_CFLAGS += -m$(CONFIG_WORD_SIZE)
+KBUILD_AFLAGS += -m$(CONFIG_WORD_SIZE)
override AR := GNUTARGET=elf$(CONFIG_WORD_SIZE)-powerpc $(AR)
endif
--
Men will always be men -- no matter where they are.
-- Harry Mudd, "Mudd's Women", stardate 1329.8
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-04-07 3:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-02 19:06 [PATCH] powerpc - Use KBUILD_CFLAGS and similar Bastian Blank
2008-04-07 3:27 ` Paul Mackerras
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).