summaryrefslogtreecommitdiff
path: root/scripts/build/debug
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2009-01-03 21:11:41 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2009-01-03 21:11:41 (GMT)
commitb8b7843bea8f636d72540a9debfcc8e524b5d4fe (patch)
tree134d44295eed0ceb87e204c70424436bb45372f1 /scripts/build/debug
parent25dcd46fc90beaaa0e6dd0f874525f4b8bdaf239 (diff)
Get rid of all stuff related to building a /delivery' traball:
- building a delivery tarball has long been broken (since crostool-Ng is installable) - get rid of implied do_print_filename, that can be mis-leading now tarballs can not be built /trunk/scripts/build/kernel/bare-metal.sh | 4 0 4 0 ---- /trunk/scripts/build/kernel/linux.sh | 4 0 4 0 ---- /trunk/scripts/build/tools/000-template.sh | 11 0 11 0 ----------- /trunk/scripts/build/tools/100-libelf.sh | 4 0 4 0 ---- /trunk/scripts/build/tools/200-sstrip.sh | 11 1 10 0 +---------- /trunk/scripts/build/binutils.sh | 4 0 4 0 ---- /trunk/scripts/build/cc/gcc.sh | 5 0 5 0 ----- /trunk/scripts/build/debug/000-template.sh | 11 0 11 0 ----------- /trunk/scripts/build/debug/100-dmalloc.sh | 4 0 4 0 ---- /trunk/scripts/build/debug/400-ltrace.sh | 4 0 4 0 ---- /trunk/scripts/build/debug/300-gdb.sh | 7 0 7 0 ------- /trunk/scripts/build/debug/500-strace.sh | 4 0 4 0 ---- /trunk/scripts/build/debug/200-duma.sh | 4 0 4 0 ---- /trunk/scripts/build/libc/none.sh | 5 0 5 0 ----- /trunk/scripts/build/libc/glibc.sh | 10 0 10 0 ---------- /trunk/scripts/build/libc/uClibc.sh | 6 0 6 0 ------ /trunk/scripts/build/libc/eglibc.sh | 10 0 10 0 ---------- /trunk/scripts/build/gmp.sh | 6 0 6 0 ------ /trunk/scripts/build/mpfr.sh | 6 0 6 0 ------ /trunk/docs/overview.txt | 9 0 9 0 --------- 20 files changed, 1 insertion(+), 128 deletions(-)
Diffstat (limited to 'scripts/build/debug')
-rw-r--r--scripts/build/debug/000-template.sh11
-rw-r--r--scripts/build/debug/100-dmalloc.sh4
-rw-r--r--scripts/build/debug/200-duma.sh4
-rw-r--r--scripts/build/debug/300-gdb.sh7
-rw-r--r--scripts/build/debug/400-ltrace.sh4
-rw-r--r--scripts/build/debug/500-strace.sh4
6 files changed, 0 insertions, 34 deletions
diff --git a/scripts/build/debug/000-template.sh b/scripts/build/debug/000-template.sh
index b6eaa9a..c5fba91 100644
--- a/scripts/build/debug/000-template.sh
+++ b/scripts/build/debug/000-template.sh
@@ -1,16 +1,5 @@
# Template file for a debug utility
-# Small function to print the filename
-# Note that this function gets redefined over and over for each tool
-# It's of no use when building the toolchain proper, but shows all its
-# usefullness when saving the toolchain and building the tarball.
-# Echo the name of the file, without the extension, below.
-do_print_filename() {
- # For example:
- # echo "foobar-${CT_FOOBAR_VERSION}"
- :
-}
-
# Put your download code here
do_debug_foobar_get() {
# For example:
diff --git a/scripts/build/debug/100-dmalloc.sh b/scripts/build/debug/100-dmalloc.sh
index 371c5cd..27a70a8 100644
--- a/scripts/build/debug/100-dmalloc.sh
+++ b/scripts/build/debug/100-dmalloc.sh
@@ -1,9 +1,5 @@
# Build script for the dmalloc debug library facility
-do_print_filename() {
- 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/200-duma.sh b/scripts/build/debug/200-duma.sh
index 79d09fe..bdb92a6 100644
--- a/scripts/build/debug/200-duma.sh
+++ b/scripts/build/debug/200-duma.sh
@@ -1,9 +1,5 @@
# Build script for D.U.M.A.
-do_print_filename() {
- echo "duma_${CT_DUMA_VERSION}"
-}
-
do_debug_duma_get() {
CT_GetFile "duma_${CT_DUMA_VERSION}" http://mesh.dl.sourceforge.net/sourceforge/duma/
# D.U.M.A. doesn't separate its name from its version with a dash,
diff --git a/scripts/build/debug/300-gdb.sh b/scripts/build/debug/300-gdb.sh
index 321e13a..c2a964e 100644
--- a/scripts/build/debug/300-gdb.sh
+++ b/scripts/build/debug/300-gdb.sh
@@ -1,12 +1,5 @@
# Build script for the gdb debug facility
-do_print_filename() {
- echo "gdb$(do_debug_gdb_suffix)"
- if [ "${CT_GDB_NATIVE}" = "y" ]; then
- echo "ncurses-${CT_NCURSES_VERSION}"
- fi
-}
-
do_debug_gdb_suffix() {
case "${CT_GDB_VERSION}" in
snapshot) ;;
diff --git a/scripts/build/debug/400-ltrace.sh b/scripts/build/debug/400-ltrace.sh
index 8d8e1cb..231a61f 100644
--- a/scripts/build/debug/400-ltrace.sh
+++ b/scripts/build/debug/400-ltrace.sh
@@ -1,9 +1,5 @@
# Build script for ltrace
-do_print_filename() {
- echo "ltrace-${CT_LTRACE_VERSION}.orig"
-}
-
do_debug_ltrace_get() {
CT_GetFile "ltrace_${CT_LTRACE_VERSION}.orig" {ftp,http}://ftp.de.debian.org/debian/pool/main/l/ltrace/
# Create a link so that the following steps are easier to do:
diff --git a/scripts/build/debug/500-strace.sh b/scripts/build/debug/500-strace.sh
index ee1fc2c..8e3c682 100644
--- a/scripts/build/debug/500-strace.sh
+++ b/scripts/build/debug/500-strace.sh
@@ -1,9 +1,5 @@
# Build script for strace
-do_print_filename() {
- echo "strace-${CT_STRACE_VERSION}"
-}
-
do_debug_strace_get() {
CT_GetFile "strace-${CT_STRACE_VERSION}" http://mesh.dl.sourceforge.net/sourceforge/strace/
# Downloading from sourceforge leaves garbage, cleanup