summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-08-05 04:43:56 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-08-05 04:43:56 +0000
commit9fa95f8dba0fac81b99166b201b4607101a6e92f (patch)
tree5caae4a9f4f9287a146783be635d133c8053d29a /make
parent2007-08-05 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-9fa95f8dba0fac81b99166b201b4607101a6e92f.tar.bz2
2007-08-05 Ralf Corsépius <ralf.corsepius@rtems.org>
* custom/av5282.cfg: Remove bogus -qnolinkcmds, -m5200 from linker calls.
Diffstat (limited to 'make')
-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