From e68206a127a5d9a8e134b7661ac98861abad3e5c Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 20 Jan 2005 18:12:20 +0000 Subject: 2005-01-20 Joel Sherrill * custom/arm_bare_bsp.cfg, custom/armulator.cfg, custom/csb336.cfg, custom/csb337.cfg, custom/edb7312.cfg, custom/jmr3904.cfg, custom/pc486.cfg, custom/pc586.cfg, custom/pc686.cfg, custom/pck6.cfg, custom/vegaplus.cfg: Correct use of arguments for gcc 4.x. Hopefully they are still OK for gcc 3.3.5. --- make/custom/pc486.cfg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'make/custom/pc486.cfg') diff --git a/make/custom/pc486.cfg b/make/custom/pc486.cfg index dca45047af..feb3b91de5 100644 --- a/make/custom/pc486.cfg +++ b/make/custom/pc486.cfg @@ -8,7 +8,9 @@ RTEMS_CPU_MODEL=i486dx # gcc 2.95.x and 3.0 #CPU_CFLAGS = -m486 # gcc 3.1 and newer -CPU_CFLAGS=-mcpu=i486 +# CPU_CFLAGS=-mcpu=i486 +# gcc 4.0 and newer +CPU_CFLAGS=-mtune=i486 include $(RTEMS_ROOT)/make/custom/pc386.cfg -- cgit v1.2.3