summaryrefslogtreecommitdiff
path: root/scripts/build/binutils
diff options
context:
space:
mode:
authorYann Diorcet <diorcet.yann@gmail.com>2012-11-19 10:19:54 (GMT)
committerYann Diorcet <diorcet.yann@gmail.com>2012-11-19 10:19:54 (GMT)
commitba31ed29c42454d4cd1c1792128ca19944e5a455 (patch)
treebae7ab51635a8b90d58cf6db91b87c70ad6f64a7 /scripts/build/binutils
parent062547b04d929d0f7e40ace215495e56fd5fd806 (diff)
binutils/sstrip: remove
sstrip has been obsoleted for a while now, as it's still broken for some archs, and there seems to be no incentive to fix it upstream. Besides, the space gained with sstrip is marginal at best. Signed-off-by: Yann Diorcet <diorcet.yann@gmail.com> Message-Id: <65c8bf534d0647ce52cd.1353320545@macbook-smorlat.local> Patchwork-Id: 199970
Diffstat (limited to 'scripts/build/binutils')
-rw-r--r--scripts/build/binutils/sstrip.sh43
1 files changed, 0 insertions, 43 deletions
diff --git a/scripts/build/binutils/sstrip.sh b/scripts/build/binutils/sstrip.sh
deleted file mode 100644
index b68d337..0000000
--- a/scripts/build/binutils/sstrip.sh
+++ /dev/null
@@ -1,43 +0,0 @@
-# This will build and install sstrip to run on host and sstrip target files
-
-do_sstrip_get() { :; }
-do_sstrip_extract() { :; }
-do_sstrip_for_host() { :; }
-
-if [ "${CT_SSTRIP}" = "y" ]; then
- do_sstrip_get() {
- CT_GetFile sstrip .c http://git.buildroot.net/buildroot/plain/toolchain/sstrip
- }
-
- do_sstrip_extract() {
- # We leave the sstrip maintenance to the buildroot people:
- # -> any fix-up goes directly there
- # -> we don't have patches for it
- # -> we don't need to patch it
- # -> just create a directory in src/, and copy it there.
- CT_DoExecLog DEBUG mkdir -p "${CT_SRC_DIR}/sstrip"
- CT_DoExecLog DEBUG cp -v "${CT_TARBALLS_DIR}/sstrip.c" "${CT_SRC_DIR}/sstrip"
- }
-
- # Build sstrip for host -> target
- # Note: we don't need sstrip to run on the build machine,
- # so we do not need the frontend/backend stuff...
- do_sstrip_for_host() {
- local sstrip_cflags
- CT_DoStep INFO "Installing sstrip for host"
- CT_mkdir_pushd "${CT_BUILD_DIR}/build-sstrip-host"
-
- if [ "${CT_STATIC_TOOLCHAIN}" = "y" ]; then
- sstrip_cflags="-static"
- fi
-
- CT_DoLog EXTRA "Building sstrip"
- CT_DoExecLog ALL "${CT_HOST}-gcc" -Wall ${sstrip_cflags} -o sstrip "${CT_SRC_DIR}/sstrip/sstrip.c"
-
- CT_DoLog EXTRA "Installing sstrip"
- CT_DoExecLog ALL install -m 755 sstrip "${CT_PREFIX_DIR}/bin/${CT_TARGET}-sstrip"
-
- CT_Popd
- CT_EndStep
- }
-fi