2002-08-09 Joel Sherrill <joel@OARcorp.com>

* custom/gen405.cfg: Corrected make-cxx-exe rule to use LINK.cc.
This commit is contained in:
Joel Sherrill
2002-08-09 12:54:24 +00:00
parent 1e1222ce43
commit 5a339e2ff7
2 changed files with 6 additions and 1 deletions

View File

@@ -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.

View File

@@ -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) $@