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
This commit is contained in:
Joel Sherrill
2000-08-25 17:29:00 +00:00
parent 8e577624fd
commit 6fe4d043f3
6 changed files with 22 additions and 4 deletions

View File

@@ -1,4 +1,12 @@
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
* custom/i386ex.cfg: Use -msoft-float
2000-08-11 Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
* custom/mbx8xx.cfg: Add support for configuration parameters in NVRAM

View File

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

View File

@@ -5,7 +5,7 @@
#
RTEMS_CPU_MODEL=i486dx
CPU_CFLAGS = -mcpu=i486
CPU_CFLAGS = -m486
include $(RTEMS_ROOT)/make/custom/pc386.cfg

View File

@@ -5,7 +5,7 @@
#
RTEMS_CPU_MODEL=pentium
CPU_CFLAGS = -mcpu=i586
CPU_CFLAGS = -mpentium
include $(RTEMS_ROOT)/make/custom/pc386.cfg

View File

@@ -5,7 +5,7 @@
#
RTEMS_CPU_MODEL=pentiumpro
CPU_CFLAGS = -mcpu=i686
CPU_CFLAGS = -mpentiumpro
include $(RTEMS_ROOT)/make/custom/pc386.cfg

10
make/custom/pck6.cfg Normal file
View File

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