summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--make/ChangeLog2
-rw-r--r--make/custom/av5282.cfg4
2 files changed, 4 insertions, 2 deletions
diff --git a/make/ChangeLog b/make/ChangeLog
index 72ee7e1df6..9f676a71da 100644
--- a/make/ChangeLog
+++ b/make/ChangeLog
@@ -1,5 +1,7 @@
2007-08-05 Ralf Corsépius <ralf.corsepius@rtems.org>
+ * custom/av5282.cfg: Remove bogus -qnolinkcmds, -m5200 from linker
+ calls.
* custom/gen83xx.cfg: Use -O2.
2007-07-28 Ralf Corsépius <ralf.corsepius@rtems.org>
diff --git a/make/custom/av5282.cfg b/make/custom/av5282.cfg
index 7b81a187cf..3a1196e98a 100644
--- a/make/custom/av5282.cfg
+++ b/make/custom/av5282.cfg
@@ -28,13 +28,13 @@ endif
define make-exe
- $(LINK.c) $(AM_CFLAGS) -m5200 $(AM_LDFLAGS) -qnolinkcmds -o $(basename $@).nxe \
+ $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).nxe \
$(LINK_OBJS) $(LINK_LIBS) -Wl,-Tlinkcmds
$(OBJCOPY) -O binary --strip-all $(basename $@).nxe $@
$(SIZE) $(basename $@).nxe
endef
define make-cxx-exe
- $(LINK.cc) $(AM_CFLAGS) -m5200 $(AM_LDFLAGS) -qnolinkcmds -o $(basename $@).nxe \
+ $(LINK.cc) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).nxe \
$(LINK_OBJS) $(LINK_LIBS) -Wl,-Tlinkcmds
$(OBJCOPY) -O binary --strip-all $(basename $@).nxe $@
$(SIZE) $(basename $@).nxe