summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2006-11-14 02:36:01 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2006-11-14 02:36:01 +0000
commitbac803cf97f7d04c9965c5e57ec2a8f0384a3199 (patch)
tree845b7731a3619a9ee747c24d2388b83e2781308a
parent2006-11-14 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-bac803cf97f7d04c9965c5e57ec2a8f0384a3199.tar.bz2
Remove hard-code compiler flags.
Diffstat (limited to '')
-rw-r--r--make/custom/uC5282.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/make/custom/uC5282.cfg b/make/custom/uC5282.cfg
index 86467d7c06..9d403a8d22 100644
--- a/make/custom/uC5282.cfg
+++ b/make/custom/uC5282.cfg
@@ -22,13 +22,13 @@ CFLAGS_OPTIMIZE_V= -O4 -g
# will be able to override parts of the compilers specs and link using gcc.
define make-exe
- $(LINK.c) $(AM_CFLAGS) -m5200 $(AM_LDFLAGS) -o $(basename $@).nxe \
+ $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).nxe \
$(LINK_OBJS) $(LINK_LIBS)
$(OBJCOPY) -O binary --strip-all $(basename $@).nxe $@
$(SIZE) $(basename $@).nxe
endef
define make-cxx-exe
- $(LINK.cc) $(AM_CFLAGS) -m5200 $(AM_LDFLAGS) -o $(basename $@).nxe \
+ $(LINK.cc) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).nxe \
$(LINK_OBJS) $(LINK_LIBS)
$(OBJCOPY) -O binary --strip-all $(basename $@).nxe $@
$(SIZE) $(basename $@).nxe