summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-06-14 18:33:39 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-06-14 18:33:39 +0000
commit3b38683e9246d156aa71a4d8e8334383fa2c5534 (patch)
tree41b07b640e6901b4dc678062bdfa7f93edb38154 /make
parentPatch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>: (diff)
downloadrtems-3b38683e9246d156aa71a4d8e8334383fa2c5534.tar.bz2
Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:
* Use $(PACKHEX) instead of $(PROJECT_TOOLS)/packhex * Set HAS_RDBG=no for ts_386ex otherwise building it will attempt to compile librdbg for pc386
Diffstat (limited to '')
-rw-r--r--make/custom/ts_386ex.cfg7
1 files changed, 5 insertions, 2 deletions
diff --git a/make/custom/ts_386ex.cfg b/make/custom/ts_386ex.cfg
index ad18e98b2f..7a609e2f7c 100644
--- a/make/custom/ts_386ex.cfg
+++ b/make/custom/ts_386ex.cfg
@@ -27,6 +27,9 @@ CFLAGS_OPTIMIZE_V=-O4
# to enable it.
HAS_NETWORKING=yes
+# This BSP does not support librdbg
+HAS_RDBG=no
+
# This section makes the target dependent options file.
# NDEBUG (C library)
@@ -74,7 +77,7 @@ define make-exe
$(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
$(OBJCOPY) -O srec $(basename $@).coff $(basename $@).i
$(SED) -e 's/.$$//' -e '/^S0/d' $(basename $@).i | \
- $(PROJECT_TOOLS)/packhex > $(basename $@).exe
+ $(PACKHEX) > $(basename $@).exe
$(NM) -g -n $(basename $@).coff > $(basename $@).num
$(SIZE) $(basename $@).coff
endef
@@ -84,7 +87,7 @@ define make-exe
$(LINK_OBJS) $(LINK_LIBS)
$(OBJCOPY) -O srec $(basename $@).coff $(basename $@).i
$(SED) -e 's/.$$//' -e '/^S0/d' $(basename $@).i | \
- $(PROJECT_TOOLS)/packhex > $(basename $@).exe
+ $(PACKHEX) > $(basename $@).exe
$(NM) -g -n $(basename $@).coff > $(basename $@).num
$(SIZE) $(basename $@).coff
endef