From a08447485716420aea7738efb582dfea7251b30e Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Thu, 18 Dec 2003 15:35:28 +0000 Subject: [PATCH] Initial version. --- configure/os/CONFIG.Common.linux-386 | 18 ++++++++++++++++++ configure/os/CONFIG.Common.linux-486 | 18 ++++++++++++++++++ configure/os/CONFIG.Common.linux-586 | 19 +++++++++++++++++++ configure/os/CONFIG.Common.linux-686 | 19 +++++++++++++++++++ 4 files changed, 74 insertions(+) create mode 100644 configure/os/CONFIG.Common.linux-386 create mode 100644 configure/os/CONFIG.Common.linux-486 create mode 100644 configure/os/CONFIG.Common.linux-586 create mode 100644 configure/os/CONFIG.Common.linux-686 diff --git a/configure/os/CONFIG.Common.linux-386 b/configure/os/CONFIG.Common.linux-386 new file mode 100644 index 000000000..5e1b5d74b --- /dev/null +++ b/configure/os/CONFIG.Common.linux-386 @@ -0,0 +1,18 @@ +# CONFIG.Common.linux-386 +# +# $Id$ +# This file is maintained by the build community. +# +# Definitions for linux-386 target builds +# Sites may override these definitions in CONFIG_SITE.Common.linux-386 +#------------------------------------------------------- + +# Include definitions common to all linux x86 targets +include $(CONFIG)/os/CONFIG.Common.linux-x86 + +ARCH_DEP_CFLAGS = -march=i386 + +ifdef CROSS + GNU_TARGET=i386-pc-linux-gnu +endif + diff --git a/configure/os/CONFIG.Common.linux-486 b/configure/os/CONFIG.Common.linux-486 new file mode 100644 index 000000000..dafd1f964 --- /dev/null +++ b/configure/os/CONFIG.Common.linux-486 @@ -0,0 +1,18 @@ +# CONFIG.Common.linux-486 +# +# $Id +# This file is maintained by the build community. +# +# Definitions for linux-486 target builds +# Sites may override these definitions in CONFIG_SITE.Common.linux-486 +#------------------------------------------------------- + +# Include definitions common to all linux x86 targets +include $(CONFIG)/os/CONFIG.Common.linux-x86 + +ARCH_DEP_CFLAGS = -march=i486 + +ifdef CROSS + GNU_TARGET=i486-pc-linux-gnu +endif + diff --git a/configure/os/CONFIG.Common.linux-586 b/configure/os/CONFIG.Common.linux-586 new file mode 100644 index 000000000..c94c4e20e --- /dev/null +++ b/configure/os/CONFIG.Common.linux-586 @@ -0,0 +1,19 @@ +# CONFIG.Common.linux-586 +# +# $Id$ +# This file is maintained by the build community. +# +# Definitions for linux-586 target builds +# Sites may override these definitions in CONFIG_SITE.Common.linux-586 +#------------------------------------------------------- + +# 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 + +ifdef CROSS + GNU_TARGET=i586-pc-linux-gnu +endif + diff --git a/configure/os/CONFIG.Common.linux-686 b/configure/os/CONFIG.Common.linux-686 new file mode 100644 index 000000000..6c0d61a93 --- /dev/null +++ b/configure/os/CONFIG.Common.linux-686 @@ -0,0 +1,19 @@ +# CONFIG.Common.linux-686 +# +# $Id$ +# This file is maintained by the build community. +# +# Definitions for linux-686 target builds +# Sites may override these definitions in CONFIG_SITE.Common.linux-686 +#------------------------------------------------------- + +# Include definitions common to all linux x86 targets +include $(CONFIG)/os/CONFIG.Common.linux-x86 + +# i686 is euivalent to pentiumpro +ARCH_DEP_CFLAGS = -march=i686 + +ifdef CROSS + GNU_TARGET=i686-pc-linux-gnu +endif +