summaryrefslogtreecommitdiffstats
path: root/make/custom
diff options
context:
space:
mode:
Diffstat (limited to 'make/custom')
-rw-r--r--make/custom/pc486.cfg5
-rw-r--r--make/custom/pc586.cfg5
-rw-r--r--make/custom/pc686.cfg5
3 files changed, 12 insertions, 3 deletions
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