summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-08-09 12:54:24 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-08-09 12:54:24 +0000
commit5a339e2ff79d00b215549ad37836c8df65ecb190 (patch)
treedc69265aabab5d5cd2a830c23577dac7c6d6d3c0
parent2002-08-09 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-5a339e2ff79d00b215549ad37836c8df65ecb190.tar.bz2
2002-08-09 Joel Sherrill <joel@OARcorp.com>
* custom/gen405.cfg: Corrected make-cxx-exe rule to use LINK.cc.
-rw-r--r--make/ChangeLog4
-rw-r--r--make/custom/gen405.cfg3
2 files changed, 6 insertions, 1 deletions
diff --git a/make/ChangeLog b/make/ChangeLog
index 5e7b6af07a..6da97803c3 100644
--- a/make/ChangeLog
+++ b/make/ChangeLog
@@ -1,3 +1,7 @@
+2002-08-09 Joel Sherrill <joel@OARcorp.com>
+
+ * custom/gen405.cfg: Corrected make-cxx-exe rule to use LINK.cc.
+
2002-08-07 Ivan Guzvinec <ivang@opencores.org>
* orp.cfg: Bender BSP renamed to OpenRisc Reference Platform or ORP.
diff --git a/make/custom/gen405.cfg b/make/custom/gen405.cfg
index 1bc9628010..311d5180a8 100644
--- a/make/custom/gen405.cfg
+++ b/make/custom/gen405.cfg
@@ -46,7 +46,8 @@ endef
# $(OBJCOPY) -O srec --srec-len 120 $(basename $@).exe $(basename $@).srec
define make-cxx-exe
- $(LINK.c) $(AM_CFLAGS) $(AM_CXXFLAGS) $(AM_LDFLAGS) -o $(basename $@).exe $(LINK_OBJS) $(LINK_LIBS)
+ $(LINK.cc) $(AM_CFLAGS) $(AM_CXXFLAGS) $(AM_LDFLAGS) \
+ -o $(basename $@).exe $(LINK_OBJS) $(LINK_LIBS)
$(OBJCOPY) -O srec $(basename $@).exe $(basename $@).srec
$(NM) -g -n $@ > $(basename $@).num
$(SIZE) $@