2002-07-24 Joel Sherrill <joel@OARcorp.com>

* custom/pc486.cfg, custom/pc586.cfg, custom/pc686.cfg: Updated
	to use gcc 3.1 arguments.
This commit is contained in:
Joel Sherrill
2002-07-24 13:31:21 +00:00
parent 053f9f114f
commit 7660fe6bc2
4 changed files with 17 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2002-07-24 Joel Sherrill <joel@OARcorp.com>
* custom/pc486.cfg, custom/pc586.cfg, custom/pc686.cfg: Updated
to use gcc 3.1 arguments.
2002-07-22 Joel Sherrill <joel@OARcorp.com>
* Templates/Makefile.leaf: Clarify the MANAGERS example.

View File

@@ -5,7 +5,10 @@
#
RTEMS_CPU_MODEL=i486dx
CPU_CFLAGS = -m486
# gcc 2.95.x and 3.0
#CPU_CFLAGS = -m486
# gcc 3.1 and newer
CPU_CFLAGS=-mcpu=i486
include $(RTEMS_ROOT)/make/custom/pc386.cfg

View File

@@ -5,7 +5,10 @@
#
RTEMS_CPU_MODEL=pentium
CPU_CFLAGS = -mpentium
# gcc 2.95.x and 3.0
#CPU_CFLAGS = -mpentium
# gcc 3.1 and newer
CPU_CFLAGS=-mcpu=pentium
include $(RTEMS_ROOT)/make/custom/pc386.cfg

View File

@@ -5,7 +5,10 @@
#
RTEMS_CPU_MODEL=pentiumpro
CPU_CFLAGS = -mpentiumpro
# gcc 2.95.x and 3.0
#CPU_CFLAGS = -mpentiumpro
# gcc 3.1 and newer
CPU_CFLAGS=-mcpu=pentiumpro
include $(RTEMS_ROOT)/make/custom/pc386.cfg