summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--make/ChangeLog6
-rw-r--r--make/custom/mcp750.cfg4
-rw-r--r--make/custom/mpc8260ads.cfg12
-rw-r--r--make/custom/mvme5500.cfg8
4 files changed, 9 insertions, 21 deletions
diff --git a/make/ChangeLog b/make/ChangeLog
index 91cf75a8ef..335dff7913 100644
--- a/make/ChangeLog
+++ b/make/ChangeLog
@@ -1,3 +1,9 @@
+2005-03-03 Ralf Corsepius <ralf.corsepius@rtems.org>
+
+ * custom/mpc8260ads.cfg : Remove PPC_ASM, PPC_ABI.
+ * custom/mvme5500.cfg: Remove CFLAGS_PROFILE_V.
+ Remove -Wa,-m7450.
+
2005-02-25 Joel Sherrill <joel@OARcorp.com>
* custom/jmr3904.cfg: arm_bare_bsp obsoleted.
diff --git a/make/custom/mcp750.cfg b/make/custom/mcp750.cfg
index a8cd098c06..0b18e4cd03 100644
--- a/make/custom/mcp750.cfg
+++ b/make/custom/mcp750.cfg
@@ -16,9 +16,6 @@ RTEMS_BSP_FAMILY=motorola_powerpc
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
#
-# NOTE : cheking egcc 1.1.1 source code shows that the last know processor
-# is the 604 model and that this is the default generation option.
-#
CPU_CFLAGS = -mcpu=750 -Dmpc750
# optimize flag: typically -0, could use -O4 or -fast
@@ -30,7 +27,6 @@ CPU_CFLAGS = -mcpu=750 -Dmpc750
# model => not used.
# Currently the sdata2 and sbss2 sections are empty => r2 is not used...
CFLAGS_OPTIMIZE_V=-O4 -mmultiple -mstring -mstrict-align
-#CFLAGS_OPTIMIZE_V=-O4 -fno-keep-inline-functions -fvolatile-global -fvolatile -mstrict-align -mcpu=750
# debug flags: typically none, but at least -O1 is required due to this
# BSP using inlined code
diff --git a/make/custom/mpc8260ads.cfg b/make/custom/mpc8260ads.cfg
index ea0623982f..e7473ab638 100644
--- a/make/custom/mpc8260ads.cfg
+++ b/make/custom/mpc8260ads.cfg
@@ -13,21 +13,11 @@ RTEMS_CPU_MODEL=mpc8260
# This is the actual bsp directory used during the build process.
RTEMS_BSP_FAMILY=mpc8260ads
-# PPC_ABI (PowerPC)
-# This defines the calling convention (Application Binary Interface)
-# used in this configuration. EABI is the only one supported.
-# This BSP was initially developed using the PowerOpen ABI.
-#
-# PPC_ASM (PowerPC)
-# This defines the assembly language format used in this configuration.
-# ELF is the only one supported.
-
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
#
# CPU_CFLAGS = -mcpu=$(8XX_CPU_TYPE) -mstrict-align
-CPU_CFLAGS = -mcpu=603e -mstrict-align -Dmpc8260 \
- -DPPC_ABI=PPC_ABI_EABI -DPPC_ASM=PPC_ASM_ELF
+CPU_CFLAGS = -mcpu=603e -mstrict-align -Dmpc8260
# optimize flag: typically -0, could use -O4 or -fast
# -O4 is ok for RTEMS
diff --git a/make/custom/mvme5500.cfg b/make/custom/mvme5500.cfg
index 2d439e7b27..f8e53aaa23 100644
--- a/make/custom/mvme5500.cfg
+++ b/make/custom/mvme5500.cfg
@@ -1,7 +1,7 @@
#
# Config file for the PowerPC 7455 based mvme5500
#
-# mvme2307.cfg,v 1.14.4.1 2003/03/18 19:26:36 joel Exp
+# $Id$
#
include $(RTEMS_ROOT)/make/custom/default.cfg
@@ -17,7 +17,7 @@ RTEMS_BSP_FAMILY=mvme5500
# and (hopefully) optimize for it.
# if gcc does not regonize 7450 then change -mcpu=750
#
-CPU_CFLAGS = -mcpu=7450 -Dmpc7455 -mmultiple -mstring -mstrict-align -Wa,-m7450
+CPU_CFLAGS = -mcpu=7450 -Dmpc7455 -mmultiple -mstring -mstrict-align
#T. Straumann; disable sdata=eabi for now until CEXP supports it -meabi -msdata=eabi
# optimize flag: typically -0, could use -O4 or -fast
@@ -30,10 +30,6 @@ CFLAGS_OPTIMIZE_V = -O4
# BSP using inlined code
CFLAGS_DEBUG_V = -O1
-# profile flags: typically none, but at least -O1 is required due to this
-# BSP using inlined code
-CFLAGS_PROFILE_V = -O1
-
define make-exe
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ $(LINK_OBJS) $(LINK_LIBS)
$(NM) -g -n $@ > $(basename $@).num