From: Samuel Martin <s.martin49@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v7 00/18] Relocatable SDK / build machine leaks
Date: Wed, 9 Mar 2016 23:58:41 +0100 [thread overview]
Message-ID: <1457564339-27294-1-git-send-email-s.martin49@gmail.com> (raw)
Hi all,
Here is yet another round of the series aiming improving the relocatability
of the SDK built by Buildroot.
The new round improves the shell implementation started in the previous
submission.
In details:
Patches 1 to 3:
Clean up and preparatory work for the relocatable SDK series and also helping
to track build machine leaks into host, target and staging trees.
Patches 4 to 7:
Make some pieces of the Buildroot SDK relocatable (limited to some symlinks
and *-config scripts).
Patches 8 to 10:
Add the fix-rpath script, then run it on the Buildroot host, target and
staging trees.
Patch 11:
Clean-up speex package WRT its RPATH hook.
Patch 12:
Add a post-install hook to the toolchain package to render it relocatable.
Patch 13 to 15:
Update and fix the check-host-rpath to re-use the shell helpers.
Patches 16 and 17:
Add means to track build machine leaks into the host, target and staging
trees. These patches will allow to identify what remains to be fixed WRT
build machine leaks.
Patches 18:
Update documentation about how to enable/adjust log level on script using
the shell modules introduced in patch 8/18.
Worth noting:
* patches 4, 5, 6 and 7 fix scripts or wrappers WRT improving the SDK
relocatability;
* patches 8 and 16 add new scripts (which are not executed without the
patches 9, 10 and 12).
* patches 9, 10 and 12 add make targets called on all builds, improving the
SDK relocatability; patch 17 also add make targets, but they are not in as
dependency of any other, so must be invoke explicitly.
* all others patches are fairly trivial fixes or improvements.
Future works:
* Handling autotools/libtools relocation
* Analysing and fixing leaks and relocation remaining issues
Regards,
Samuel
--
Samuel Martin (18):
package/linux-headers: cleanup installation
core: use $(CURDIR) to set TOPDIR
core: re-enter make if $(CURDIR) or $(O) are not absolute canonical
path
core: staging symlink uses a relative path when possible
core: make staging *-config scripts relocatable
core: make host *-config scripts relocatable
package/pkgconf: make the pkg-config wrapper relocatable
support/scripts: add fix-rpath script + a bunch of helpers
core: add HOST_SANITIZE_RPATH_HOOK to TARGET_FINALIZE_HOOKS
core: add {TARGET,STAGING}_SANITIZE_RPATH_HOOK to
TARGET_FINALIZE_HOOKS
package/speex: remove no longer needed hook
toolchain: add post-install hooks making the toolchain relocatable
support/scripts: update check-host-rpath to use the shell helpers
support/scripts/check-host-rpath: silent find command
support/scripts/check-host-rpath: also check HOST_DIR/{bin,sbin}
support/scripts: add check-host-leaks script + all needed helpers
core: add check-leaks-in-{target,host,staging} targets
docs/manual: document how to debug shell script
Makefile | 76 +++++++-
docs/manual/debugging-buildroot.txt | 15 ++
package/linux-headers/linux-headers.mk | 1 +
package/pkg-generic.mk | 14 +-
package/pkg-utils.mk | 5 +
package/pkgconf/pkg-config.in | 4 +-
package/pkgconf/pkgconf.mk | 8 +-
package/speex/speex.mk | 5 -
support/scripts/check-host-leaks | 63 +++++++
support/scripts/check-host-rpath | 71 +++----
support/scripts/fix-rpath | 116 ++++++++++++
support/scripts/shell/log.sh | 61 ++++++
support/scripts/shell/patchelf.sh | 178 ++++++++++++++++++
support/scripts/shell/readelf.sh | 328 +++++++++++++++++++++++++++++++++
support/scripts/shell/sdk.sh | 138 ++++++++++++++
support/scripts/shell/source.sh | 77 ++++++++
support/scripts/shell/utils.sh | 76 ++++++++
toolchain/toolchain/toolchain.mk | 5 +
18 files changed, 1183 insertions(+), 58 deletions(-)
mode change 100644 => 100755 package/pkgconf/pkg-config.in
create mode 100755 support/scripts/check-host-leaks
create mode 100755 support/scripts/fix-rpath
create mode 100644 support/scripts/shell/log.sh
create mode 100644 support/scripts/shell/patchelf.sh
create mode 100644 support/scripts/shell/readelf.sh
create mode 100644 support/scripts/shell/sdk.sh
create mode 100644 support/scripts/shell/source.sh
create mode 100644 support/scripts/shell/utils.sh
--
2.7.2
next reply other threads:[~2016-03-09 22:58 UTC|newest]
Thread overview: 57+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-09 22:58 Samuel Martin [this message]
2016-03-09 22:58 ` [Buildroot] [PATCH v7 01/18] package/linux-headers: cleanup installation Samuel Martin
2016-03-09 23:09 ` Yann E. MORIN
2016-03-12 8:46 ` Samuel Martin
2016-03-22 22:10 ` Yann E. MORIN
2016-03-09 22:58 ` [Buildroot] [PATCH v7 02/18] core: use $(CURDIR) to set TOPDIR Samuel Martin
2016-03-09 23:10 ` Yann E. MORIN
2016-03-09 23:51 ` Arnout Vandecappelle
2016-03-10 20:45 ` Thomas Petazzoni
2016-03-10 22:50 ` Thomas Petazzoni
2016-03-09 22:58 ` [Buildroot] [PATCH v7 03/18] core: re-enter make if $(CURDIR) or $(O) are not absolute canonical path Samuel Martin
2016-03-09 23:15 ` Yann E. MORIN
2016-03-12 8:48 ` Samuel Martin
[not found] ` <CAFt09wNvtXGcfZ3PFZOgGu+bDvp6mEr44uwxa_ryjeP6DDQKBQ@mail.gmail.com>
2016-03-21 1:45 ` Matthew Weber
2016-03-21 5:21 ` Samuel Martin
2016-03-21 11:40 ` Matthew Weber
2016-03-22 3:03 ` Matthew Weber
2016-03-22 5:55 ` Samuel Martin
2016-03-22 11:10 ` Matthew Weber
2016-03-22 22:07 ` Yann E. MORIN
2016-03-22 23:11 ` Matthew Weber
2016-03-23 0:54 ` Matthew Weber
2016-03-23 1:36 ` Matthew Weber
2016-03-25 6:31 ` Samuel Martin
2016-03-26 12:21 ` Arnout Vandecappelle
2016-03-23 17:41 ` Yann E. MORIN
2016-03-09 22:58 ` [Buildroot] [PATCH v7 04/18] core: staging symlink uses a relative path when possible Samuel Martin
2016-03-09 23:20 ` Yann E. MORIN
2016-03-10 20:47 ` Thomas Petazzoni
2016-03-12 9:11 ` Samuel Martin
2016-03-12 13:12 ` Thomas Petazzoni
2016-03-09 22:58 ` [Buildroot] [PATCH v7 05/18] core: make staging *-config scripts relocatable Samuel Martin
2016-03-09 23:24 ` Yann E. MORIN
2016-03-10 0:07 ` Arnout Vandecappelle
2016-03-12 9:22 ` Samuel Martin
2016-03-09 22:58 ` [Buildroot] [PATCH v7 06/18] core: make host " Samuel Martin
2016-03-10 0:12 ` Arnout Vandecappelle
2016-03-10 12:30 ` Samuel Martin
2016-03-10 20:50 ` Thomas Petazzoni
2016-03-09 22:58 ` [Buildroot] [PATCH v7 07/18] package/pkgconf: make the pkg-config wrapper relocatable Samuel Martin
2016-03-10 20:53 ` Thomas Petazzoni
2016-03-10 21:33 ` Peter Korsgaard
2016-03-09 22:58 ` [Buildroot] [PATCH v7 08/18] support/scripts: add fix-rpath script + a bunch of helpers Samuel Martin
2016-03-09 22:58 ` [Buildroot] [PATCH v7 09/18] core: add HOST_SANITIZE_RPATH_HOOK to TARGET_FINALIZE_HOOKS Samuel Martin
2016-03-09 22:58 ` [Buildroot] [PATCH v7 10/18] core: add {TARGET, STAGING}_SANITIZE_RPATH_HOOK " Samuel Martin
2016-03-09 22:58 ` [Buildroot] [PATCH v7 11/18] package/speex: remove no longer needed hook Samuel Martin
2016-03-09 22:58 ` [Buildroot] [PATCH v7 12/18] toolchain: add post-install hooks making the toolchain relocatable Samuel Martin
2016-03-09 22:58 ` [Buildroot] [PATCH v7 13/18] support/scripts: update check-host-rpath to use the shell helpers Samuel Martin
2016-03-09 22:58 ` [Buildroot] [PATCH v7 14/18] support/scripts/check-host-rpath: silent find command Samuel Martin
2016-03-10 0:15 ` Arnout Vandecappelle
2016-03-09 22:58 ` [Buildroot] [PATCH v7 15/18] support/scripts/check-host-rpath: also check HOST_DIR/{bin, sbin} Samuel Martin
2016-03-10 0:16 ` Arnout Vandecappelle
2016-03-09 22:58 ` [Buildroot] [PATCH v7 16/18] support/scripts: add check-host-leaks script + all needed helpers Samuel Martin
2016-03-27 22:38 ` Arnout Vandecappelle
2016-03-09 22:58 ` [Buildroot] [PATCH v7 17/18] core: add check-leaks-in-{target, host, staging} targets Samuel Martin
2016-03-09 22:58 ` [Buildroot] [PATCH v7 18/18] docs/manual: document how to debug shell script Samuel Martin
2016-03-10 0:21 ` Arnout Vandecappelle
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1457564339-27294-1-git-send-email-s.martin49@gmail.com \
--to=s.martin49@gmail.com \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox