From 37cce18efa5466b2b7d6b7cd23e7dd782987a6a0 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Sat, 16 Jun 2007 18:08:14 +0000 Subject: Add a function to print each component's filename: this eases building the tarball of the generated toolchain. Hard-link the libfloat tarball instead of soft-link: this also eases building the afore-mentioned tarball. --- scripts/build/debug/dmalloc.sh | 5 +++++ scripts/build/debug/gdb.sh | 5 +++++ 2 files changed, 10 insertions(+) (limited to 'scripts/build/debug') diff --git a/scripts/build/debug/dmalloc.sh b/scripts/build/debug/dmalloc.sh index 075035c3..039f1ead 100644 --- a/scripts/build/debug/dmalloc.sh +++ b/scripts/build/debug/dmalloc.sh @@ -2,6 +2,11 @@ is_enabled="${CT_DMALLOC}" +do_print_filename() { + [ "${CT_DMALLOC}" = "y" ] || return 0 + echo "dmalloc-${CT_DMALLOC_VERSION}" +} + do_debug_dmalloc_get() { CT_GetFile "dmalloc-${CT_DMALLOC_VERSION}" http://dmalloc.com/releases/ } diff --git a/scripts/build/debug/gdb.sh b/scripts/build/debug/gdb.sh index e1f6de56..55c7c543 100644 --- a/scripts/build/debug/gdb.sh +++ b/scripts/build/debug/gdb.sh @@ -2,6 +2,11 @@ is_enabled="${CT_GDB}" +do_print_filename() { + [ "${CT_GDB}" = "y" ] || return 0 + echo "gdb`do_debug_gdb_suffix`" +} + do_debug_gdb_suffix() { case "${CT_GDB_VERSION}" in snapshot) ;; -- cgit v1.2.3