From: Romain Naour <romain.naour@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v4 1/3] toolchain: allow side by side sysroot directories
Date: Tue, 29 Dec 2015 17:32:46 +0100 [thread overview]
Message-ID: <5682B5AE.10504@gmail.com> (raw)
In-Reply-To: <1450196485-19214-1-git-send-email-Vincent.Riera@imgtec.com>
Hi Vicente,
Le 15/12/2015 17:21, Vicente Olivert Riera a ?crit :
> Currently our toolchain infrastructure assumes that every toolchain has
> nested sysroot directories. However that's not true for all of them. The
> Codescape toolchains from Imagination Technologies use a side by side
> sysroot structure, for instance.
>
> This patch allows our toolchain infrastructure to detect what kind of
> sysroot structure we have (nested or side by side) and performs the
> appropriate actions.
>
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
> ---
> Changes v1 -> v4:
> - This patch didn't exist before. It has been introduced in v4.
>
> toolchain/helpers.mk | 28 +++++++++++++++++-----------
> 1 file changed, 17 insertions(+), 11 deletions(-)
>
> diff --git a/toolchain/helpers.mk b/toolchain/helpers.mk
> index 1452ec6..1b9d12f 100644
> --- a/toolchain/helpers.mk
> +++ b/toolchain/helpers.mk
> @@ -142,18 +142,24 @@ copy_toolchain_sysroot = \
> $${ARCH_SYSROOT_DIR}/$$i/ $(STAGING_DIR)/$$i/ ; \
> fi ; \
> done ; \
> - if [ `readlink -f $${SYSROOT_DIR}` != `readlink -f $${ARCH_SYSROOT_DIR}` ] ; then \
> - if [ ! -d $${ARCH_SYSROOT_DIR}/usr/include ] ; then \
> - cp -a $${SYSROOT_DIR}/usr/include $(STAGING_DIR)/usr ; \
> - fi ; \
> - mkdir -p `dirname $(STAGING_DIR)/$${ARCH_SUBDIR}` ; \
> + SYSROOT_DIR_CANON=`readlink -f $${SYSROOT_DIR}` ; \
> + ARCH_SYSROOT_DIR_CANON=`readlink -f $${ARCH_SYSROOT_DIR}` ; \
> + if [ $${SYSROOT_DIR_CANON} != $${ARCH_SYSROOT_DIR_CANON} ] ; then \
> relpath="./" ; \
> - nbslashs=`printf $${ARCH_SUBDIR} | sed 's%[^/]%%g' | wc -c` ; \
> - for slash in `seq 1 $${nbslashs}` ; do \
> - relpath=$${relpath}"../" ; \
> - done ; \
> - ln -s $${relpath} $(STAGING_DIR)/$${ARCH_SUBDIR} ; \
> - echo "Symlinking $(STAGING_DIR)/$${ARCH_SUBDIR} -> $${relpath}" ; \
> + if [ $${ARCH_SYSROOT_DIR_CANON:0:$${\#SYSROOT_DIR_CANON}} == $${SYSROOT_DIR_CANON} ] ; then \
> + if [ ! -d $${ARCH_SYSROOT_DIR}/usr/include ] ; then \
> + cp -a $${SYSROOT_DIR}/usr/include $(STAGING_DIR)/usr ; \
> + fi ; \
> + mkdir -p `dirname $(STAGING_DIR)/$${ARCH_SUBDIR}` ; \
> + nbslashs=`printf $${ARCH_SUBDIR} | sed 's%[^/]%%g' | wc -c` ; \
> + for slash in `seq 1 $${nbslashs}` ; do \
> + relpath=$${relpath}"../" ; \
> + done ; \
> + ln -s $${relpath} $(STAGING_DIR)/$${ARCH_SUBDIR} ; \
> + echo "Symlinking $(STAGING_DIR)/$${ARCH_SUBDIR} -> $${relpath}" ; \
> + elif [ `dirname $${ARCH_SYSROOT_DIR_CANON}` == `dirname $${SYSROOT_DIR_CANON}` ] ; then \
> + ln -snf $${relpath} $(STAGING_DIR)/`basename $${ARCH_SYSROOT_DIR_CANON}` ; \
Maybe you want the echo a message like we do for nested sysroot toolchains ?
Something like:
echo "Symlinking $(STAGING_DIR)/`basename $${ARCH_SYSROOT_DIR_CANON}` ->
$${relpath}" ; \
Otherwise it look ok.
Reviewed-by: Romain Naour <romain.naour@gmail.com>
Best regards,
Romain
> + fi ; \
> fi ; \
> if test -n "$${SUPPORT_LIB_DIR}" ; then \
> cp -a $${SUPPORT_LIB_DIR}/* $(STAGING_DIR)/lib/ ; \
>
prev parent reply other threads:[~2015-12-29 16:32 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-15 16:21 [Buildroot] [PATCH v4 1/3] toolchain: allow side by side sysroot directories Vicente Olivert Riera
2015-12-15 16:21 ` [Buildroot] [PATCH v4 2/3] toolchain/external: add MIPS Codescape MTI GNU Linux toolchain Vicente Olivert Riera
2015-12-29 16:38 ` Romain Naour
2016-01-20 9:59 ` Thomas Petazzoni
2016-01-20 11:14 ` Vicente Olivert Riera
2015-12-15 16:21 ` [Buildroot] [PATCH v4 3/3] toolchain/external: add MIPS Codescape IMG " Vicente Olivert Riera
2015-12-29 16:32 ` Romain Naour [this message]
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=5682B5AE.10504@gmail.com \
--to=romain.naour@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