From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v8 1/1] google-breakpad: Integration into Makefile and Config.in
Date: Thu, 31 Jul 2014 22:15:48 +0200 [thread overview]
Message-ID: <20140731201548.GF3960@free.fr> (raw)
In-Reply-To: <1406734040-31558-2-git-send-email-pascal.huerst@gmail.com>
Pascal, All,
On 2014-07-30 17:27 +0200, Pascal Huerst spake thusly:
> Signed-off-by: Pascal Huerst <pascal.huerst@gmail.com>
> ---
[--SNIP--]
> diff --git a/package/google-breakpad/gen-syms.sh b/package/google-breakpad/gen-syms.sh
> new file mode 100755
> index 0000000..284d210
> --- /dev/null
> +++ b/package/google-breakpad/gen-syms.sh
> @@ -0,0 +1,25 @@
> +#!/bin/sh
> +STAGING_DIR="${1}"
> +TARGET_DIR="${2}"
> +shift 2
> +
> +SYMBOLS_DIR="${STAGING_DIR}/usr/share/google-breakpad-symbols"
> +rm -rf "${SYMBOLS_DIR}"
> +mkdir -p "${SYMBOLS_DIR}"
> +
> +for FILE in $(ls ${TARGET_DIR}/${@}); do
This is broken, since it would pick binaries from the host system.
For example, I set the list to: /bin/busybox /bin/bzip2
And it does not fail, even though we install bzip2 in /usr/bin/bzip2.
That's because it picks my host's bzip2 which is /bin/bzip2.
I've reworked this script in my recent respin:
http://patchwork.ozlabs.org/patch/375417/
> + if [ -d "${FILE}" ]; then
> + printf "Error: '%s' is a directory\n" "${FILE}" >&2
> + exit 1
> + fi
> + if dump_syms "${FILE}" > "${SYMBOLS_DIR}/tmp.sym" 2>/dev/null; then
We need to install host-google-breakpad, which so far nothing depends
on, so it does not get installed unless you manually do it (either in
the host system, or manually run 'make host-google-breakpad), which
defeats the initial purpose of having an entry in the menuconfig.
I've fixed that in my respin, too.
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
next prev parent reply other threads:[~2014-07-31 20:15 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-30 15:27 [Buildroot] [PATCH v8 0/1] google-breakpad: Integration into Makefile and Config.in Pascal Huerst
2014-07-30 15:27 ` [Buildroot] [PATCH v8 1/1] " Pascal Huerst
2014-07-31 20:15 ` Yann E. MORIN [this message]
2014-08-01 9:12 ` Pascal Huerst
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=20140731201548.GF3960@free.fr \
--to=yann.morin.1998@free.fr \
--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