summaryrefslogtreecommitdiffstats
path: root/make/custom
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-08-25 17:29:00 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-08-25 17:29:00 +0000
commit6fe4d043f3ac9703c2abc9049db2cde57e02e921 (patch)
tree7f9dc183ac5712b4c92c23bc70513abe8c28eecb /make/custom
parent2000-08-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-6fe4d043f3ac9703c2abc9049db2cde57e02e921.tar.bz2
2000-08-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* make/custom/pck6.cfg: New file * make/custom/pc486.cfg: Use -m486 * make/custom/pc586.cfg: Use -mpentium * make/custom/pc686.cfg: Use -mmpentiumpro * make/custom/i386ex.cfg: Use -msoft-float
Diffstat (limited to 'make/custom')
-rw-r--r--make/custom/i386ex.cfg2
-rw-r--r--make/custom/pc486.cfg2
-rw-r--r--make/custom/pc586.cfg2
-rw-r--r--make/custom/pc686.cfg2
-rw-r--r--make/custom/pck6.cfg10
5 files changed, 14 insertions, 4 deletions
diff --git a/make/custom/i386ex.cfg b/make/custom/i386ex.cfg
index 3357ad5a7c..7e7d006a7e 100644
--- a/make/custom/i386ex.cfg
+++ b/make/custom/i386ex.cfg
@@ -15,7 +15,7 @@ RTEMS_BSP_FAMILY=i386ex
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
#
-CPU_CFLAGS =
+CPU_CFLAGS = -msoft-float
# optimize flag: typically -0, could use -O4 or -fast
# -O4 is ok for RTEMS
diff --git a/make/custom/pc486.cfg b/make/custom/pc486.cfg
index 5d8db10920..7f4a77281a 100644
--- a/make/custom/pc486.cfg
+++ b/make/custom/pc486.cfg
@@ -5,7 +5,7 @@
#
RTEMS_CPU_MODEL=i486dx
-CPU_CFLAGS = -mcpu=i486
+CPU_CFLAGS = -m486
include $(RTEMS_ROOT)/make/custom/pc386.cfg
diff --git a/make/custom/pc586.cfg b/make/custom/pc586.cfg
index 7eb7527621..fc2a3ac0e2 100644
--- a/make/custom/pc586.cfg
+++ b/make/custom/pc586.cfg
@@ -5,7 +5,7 @@
#
RTEMS_CPU_MODEL=pentium
-CPU_CFLAGS = -mcpu=i586
+CPU_CFLAGS = -mpentium
include $(RTEMS_ROOT)/make/custom/pc386.cfg
diff --git a/make/custom/pc686.cfg b/make/custom/pc686.cfg
index 038ef162be..47daa07083 100644
--- a/make/custom/pc686.cfg
+++ b/make/custom/pc686.cfg
@@ -5,7 +5,7 @@
#
RTEMS_CPU_MODEL=pentiumpro
-CPU_CFLAGS = -mcpu=i686
+CPU_CFLAGS = -mpentiumpro
include $(RTEMS_ROOT)/make/custom/pc386.cfg
diff --git a/make/custom/pck6.cfg b/make/custom/pck6.cfg
new file mode 100644
index 0000000000..d8d84a9f2c
--- /dev/null
+++ b/make/custom/pck6.cfg
@@ -0,0 +1,10 @@
+#
+# Configuration file for a PC using an AMD k6 Class CPU
+#
+# $Id$
+#
+
+RTEMS_CPU_MODEL=pentium
+CPU_CFLAGS = -mcpu=k6
+
+include $(RTEMS_ROOT)/make/custom/pc386.cfg