Initial version.

This commit is contained in:
Janet B. Anderson
2003-12-18 15:35:28 +00:00
parent 8d0d26b56d
commit a084474857
4 changed files with 74 additions and 0 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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