2000-08-29 Joel Sherrill <joel.sherrill@OARcorp.com>

* custom/armulator.cfg: Corrected make-exe rule to pick up debug flags.
This commit is contained in:
Joel Sherrill
2000-08-29 14:52:33 +00:00
parent 0b456f721e
commit ef386359a3
2 changed files with 6 additions and 2 deletions

View File

@@ -1,4 +1,8 @@
2000-08-29 Joel Sherrill <joel.sherrill@OARcorp.com>
* custom/armulator.cfg: Corrected make-exe rule to pick up debug flags.
2000-08-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* make/custom/pck6.cfg: New file
* make/custom/pc486.cfg: Use -m486

View File

@@ -43,8 +43,8 @@ CFLAGS_DEBUG_V = -O1
#CFLAGS_DEBUG_V = -O1 -mmultiple -mstring -mstrict-align
define make-exe
# $(CC) -v -static -Wl,-Map -Wl,Mapfile -Wl,-T -Wl,linkcmds -Wl,-N -o $(basename $@).obj $(LINK_OBJS) $(LINK_LIBS)
$(LINK.c) $(LDLIBS) -o $@ $(LINK_OBJS) $(LINK_LIBS)
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ \
$(LINK_OBJS) $(LINK_LIBS)
$(NM) -g -n $(basename $@).exe > $(basename $@).num
$(SIZE) $(basename $@).exe