summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-07-24 13:31:21 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-07-24 13:31:21 +0000
commit7660fe6bc2b04d1a0c4e7fd5b4af117e58ca5c42 (patch)
tree5e030d18a3848a0da245173b63961c91ba7b33cf
parent2002-07-24 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-7660fe6bc2b04d1a0c4e7fd5b4af117e58ca5c42.tar.bz2
2002-07-24 Joel Sherrill <joel@OARcorp.com>
* custom/pc486.cfg, custom/pc586.cfg, custom/pc686.cfg: Updated to use gcc 3.1 arguments.
Diffstat (limited to '')
-rw-r--r--make/ChangeLog5
-rw-r--r--make/custom/pc486.cfg5
-rw-r--r--make/custom/pc586.cfg5
-rw-r--r--make/custom/pc686.cfg5
4 files changed, 17 insertions, 3 deletions
diff --git a/make/ChangeLog b/make/ChangeLog
index cb8160a7d9..641e1d93f6 100644
--- a/make/ChangeLog
+++ b/make/ChangeLog
@@ -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.
diff --git a/make/custom/pc486.cfg b/make/custom/pc486.cfg
index 7f4a77281a..dca45047af 100644
--- a/make/custom/pc486.cfg
+++ b/make/custom/pc486.cfg
@@ -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
diff --git a/make/custom/pc586.cfg b/make/custom/pc586.cfg
index fc2a3ac0e2..079ea8606a 100644
--- a/make/custom/pc586.cfg
+++ b/make/custom/pc586.cfg
@@ -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
diff --git a/make/custom/pc686.cfg b/make/custom/pc686.cfg
index 47daa07083..a377e05ec7 100644
--- a/make/custom/pc686.cfg
+++ b/make/custom/pc686.cfg
@@ -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