diff options
author | Randolph Chung <tausq@parisc-linux.org> | 2005-10-21 22:52:00 -0400 |
---|---|---|
committer | Kyle McMartin <kyle@parisc-linux.org> | 2005-10-21 22:52:00 -0400 |
commit | 5beb5f32c56b70f79117e13a1abd54824a78466c (patch) | |
tree | a0dd70e130a735f6ffacc82ee6928ec34d7445b0 /arch | |
parent | 675ec7a56a77da2dda27180c95ee82ae4879142a (diff) |
[PARISC] Update minimum compiler version and CROSS_COMPILE for parisc64
Prefix changed in debian, include "gnu" in the commandline.
Signed-off-by: Carlos O'Donell <carlos@parisc-linux.org>
Ensure the compiler version is new enough (>= 3.3)
Signed-off-by: Randolph Chung <tausq@parisc-linux.org>
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/parisc/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/arch/parisc/Makefile b/arch/parisc/Makefile index e3549f480fa5..9b7e42490dd1 100644 --- a/arch/parisc/Makefile +++ b/arch/parisc/Makefile | |||
@@ -20,7 +20,8 @@ NM = sh $(srctree)/arch/parisc/nm | |||
20 | CHECKFLAGS += -D__hppa__=1 | 20 | CHECKFLAGS += -D__hppa__=1 |
21 | 21 | ||
22 | ifdef CONFIG_64BIT | 22 | ifdef CONFIG_64BIT |
23 | CROSS_COMPILE := hppa64-linux- | 23 | CROSS_COMPILE := $(shell if [ -x /usr/bin/hppa64-linux-gnu-gcc ]; then \ |
24 | echo hppa64-linux-gnu-; else echo hppa64-linux-; fi) | ||
24 | UTS_MACHINE := parisc64 | 25 | UTS_MACHINE := parisc64 |
25 | CHECKFLAGS += -D__LP64__=1 -m64 | 26 | CHECKFLAGS += -D__LP64__=1 -m64 |
26 | else | 27 | else |
@@ -34,6 +35,14 @@ FINAL_LD=$(CROSS_COMPILE)ld --warn-common --warn-section-align | |||
34 | 35 | ||
35 | OBJCOPY_FLAGS =-O binary -R .note -R .comment -S | 36 | OBJCOPY_FLAGS =-O binary -R .note -R .comment -S |
36 | 37 | ||
38 | GCC_VERSION := $(call cc-version) | ||
39 | ifneq ($(shell if [ -z $(GCC_VERSION) ] ; then echo "bad"; fi ;),) | ||
40 | $(error Sorry, couldn't find ($(cc-version)).) | ||
41 | endif | ||
42 | ifneq ($(shell if [ $(GCC_VERSION) -lt 0303 ] ; then echo "bad"; fi ;),) | ||
43 | $(error Sorry, your compiler is too old ($(GCC_VERSION)). GCC v3.3 or above is required.) | ||
44 | endif | ||
45 | |||
37 | cflags-y := -pipe | 46 | cflags-y := -pipe |
38 | 47 | ||
39 | # These flags should be implied by an hppa-linux configuration, but they | 48 | # These flags should be implied by an hppa-linux configuration, but they |