From 55fde6bb9f0cbe6a03c9a5d62bd06979dc2518e0 Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Tue, 11 Dec 2007 21:15:27 +0000 Subject: [PATCH] GNU_TARGET now in CONFIG_SITE file. Flag for 32 bit build added. --- configure/os/CONFIG.Common.linux-386 | 9 ++++++--- configure/os/CONFIG.Common.linux-486 | 7 +++++-- configure/os/CONFIG.Common.linux-586 | 10 +++++++--- configure/os/CONFIG.Common.linux-686 | 7 +++++-- 4 files changed, 23 insertions(+), 10 deletions(-) diff --git a/configure/os/CONFIG.Common.linux-386 b/configure/os/CONFIG.Common.linux-386 index 063066f4d..9e9d3374c 100644 --- a/configure/os/CONFIG.Common.linux-386 +++ b/configure/os/CONFIG.Common.linux-386 @@ -10,10 +10,13 @@ # Include definitions common to all linux x86 targets include $(CONFIG)/os/CONFIG.Common.linux-x86 -ARCH_DEP_CFLAGS = -march=i386 +ARCH_DEP_CFLAGS += -march=i386 ifeq ($(BUILD_CLASS),CROSS) - VALID_BUILDS = Ioc - GNU_TARGET=i386-pc-linux-gnu + VALID_BUILDS = Ioc endif +# If your crosscompiler name has a GNU target prefix like -gcc, +# e.g. i386-pc-linux-gnu-gcc, put a GNU_TARGET definition in +# CONFIG_SITE..linux-386 file, e.g. GNU_TARGET=i386-pc-linux-gnu + diff --git a/configure/os/CONFIG.Common.linux-486 b/configure/os/CONFIG.Common.linux-486 index d3448419c..6a39e52db 100644 --- a/configure/os/CONFIG.Common.linux-486 +++ b/configure/os/CONFIG.Common.linux-486 @@ -10,10 +10,13 @@ # Include definitions common to all linux x86 targets include $(CONFIG)/os/CONFIG.Common.linux-x86 -ARCH_DEP_CFLAGS = -march=i486 +ARCH_DEP_CFLAGS += -march=i486 ifeq ($(BUILD_CLASS),CROSS) VALID_BUILDS = Ioc - GNU_TARGET=i486-pc-linux-gnu endif +# If your crosscompiler name has a GNU target prefix like -gcc, +# e.g. i486-pc-linux-gnu-gcc, put a GNU_TARGET definition in +# CONFIG_SITE..linux-486 file, e.g. GNU_TARGET=i486-pc-linux-gnu + diff --git a/configure/os/CONFIG.Common.linux-586 b/configure/os/CONFIG.Common.linux-586 index 3728f4555..b1dc3bfbc 100644 --- a/configure/os/CONFIG.Common.linux-586 +++ b/configure/os/CONFIG.Common.linux-586 @@ -10,11 +10,15 @@ # Include definitions common to all linux x86 targets include $(CONFIG)/os/CONFIG.Common.linux-x86 -# i586 is euivalent to pentiumpro -ARCH_DEP_CFLAGS = -march=i586 +# i586 is equivalent to pentium +ARCH_DEP_CFLAGS += -march=i586 ifeq ($(BUILD_CLASS),CROSS) VALID_BUILDS = Ioc - GNU_TARGET=i586-pc-linux-gnu endif +# If your crosscompiler name has a GNU target prefix like -gcc, +# e.g. i586-pc-linux-gnu-gcc, put a GNU_TARGET definition in +# CONFIG_SITE..linux-586 file, e.g. GNU_TARGET=i586-pc-linux-gnu + + diff --git a/configure/os/CONFIG.Common.linux-686 b/configure/os/CONFIG.Common.linux-686 index 758a1168b..b00b0a173 100644 --- a/configure/os/CONFIG.Common.linux-686 +++ b/configure/os/CONFIG.Common.linux-686 @@ -11,10 +11,13 @@ include $(CONFIG)/os/CONFIG.Common.linux-x86 # i686 is euivalent to pentiumpro -ARCH_DEP_CFLAGS = -march=i686 +ARCH_DEP_CFLAGS += -march=i686 ifeq ($(BUILD_CLASS),CROSS) VALID_BUILDS = Ioc - GNU_TARGET=i686-pc-linux-gnu endif +# If your crosscompiler name has a GNU target prefix like -gcc, +# e.g. i686-pc-linux-gnu-gcc, put a GNU_TARGET definition in +# CONFIG_SITE..linux-686 file, e.g. GNU_TARGET=i686-pc-linux-gnu +