summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--make/custom/gen68360.cfg13
1 files changed, 2 insertions, 11 deletions
diff --git a/make/custom/gen68360.cfg b/make/custom/gen68360.cfg
index 0f3807cb43..afec62435c 100644
--- a/make/custom/gen68360.cfg
+++ b/make/custom/gen68360.cfg
@@ -27,21 +27,12 @@ CONFIG.$(TARGET_ARCH).CC = $(RTEMS_ROOT)/make/compilers/gcc-target-default.cfg
RTEMS_BSP=gen68360
#
-# mc68360 notes:
-# If your version of gcc supports the -mcpu32 option use the top
-# version, otherwise use the bottom set of flags to accomplish the
-# same thing.
+# You must use versions of gcc and gas that support the -mcpu32 option.
#
-# NOTE: Before binutils 2.6, the -mcpu32 flag was not available
-# if your gas does understand this, then use the alternative.
-
ifeq ($(RTEMS_GEN68360_COMPANION_MODE),yes)
CPU_CFLAGS= -m68040
else
-#CPU_CFLAGS = -mcpu32 -msoft-float
-CPU_CFLAGS = -m68020 -mnobitfield -msoft-float
-# When using the -m68020 cpu flag, we need to explicitly define these
-CPU_DEFINES=-Dmcpu32 -D__mcpu32__ $(DEFINES)
+CPU_CFLAGS = -mcpu32
endif
# optimize flag: typically -0, could use -O4 or -fast