summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--make/ChangeLog6
-rw-r--r--make/custom/uC5282.cfg4
2 files changed, 8 insertions, 2 deletions
diff --git a/make/ChangeLog b/make/ChangeLog
index bb9b85e358..9f6d941fe4 100644
--- a/make/ChangeLog
+++ b/make/ChangeLog
@@ -1,3 +1,9 @@
+2005-02-08 Eric Norum <norume@aps.anl.gov>
+
+ * custom/uC5282.cfg: Put -m5200 back in link-edit commands until
+ proper versions of gcc (which take -m528x as an order to load the
+ -m5200 multilib variants) are widely available.
+
2005-02-05 Ralf Corsepius <ralf.corsepius@rtems.org>
* custom/uC5282.cfg: Cleanup.
diff --git a/make/custom/uC5282.cfg b/make/custom/uC5282.cfg
index a31bf018ba..39dc646205 100644
--- a/make/custom/uC5282.cfg
+++ b/make/custom/uC5282.cfg
@@ -23,13 +23,13 @@ CFLAGS_OPTIMIZE_V= -O4 -fomit-frame-pointer
# will be able to override parts of the compilers specs and link using gcc.
define make-exe
- $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).nxe \
+ $(LINK.c) $(AM_CFLAGS) -m5200 $(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) $(AM_LDFLAGS) -o $(basename $@).nxe \
+ $(LINK.cc) $(AM_CFLAGS) -m5200 $(AM_LDFLAGS) -o $(basename $@).nxe \
$(LINK_OBJS) $(LINK_LIBS)
$(OBJCOPY) -O binary --strip-all $(basename $@).nxe $@
$(SIZE) $(basename $@).nxe