[OE-core] [PATCH] debian.bbclass: invoke target objdump

Khem Raj raj.khem at gmail.com
Mon Jun 18 02:44:45 UTC 2012


On Sun, Jun 17, 2012 at 7:33 PM, James Limbouris
<james at digitalmatter.com.au> wrote:
> Using the host objdump can lead to errors like:
>
> objdump: library.so.1.0.0: File format is ambiguous
> objdump: Matching formats: elf32-littlearm elf32-littlearm-symbian elf32-littlearm-vxworks
>

yes for target recipes we should always use cross binutils since host
objdump may not have all bfd emulations built in.

> with certain configurations of binutils.
>
> Signed-off-by: James Limbouris <james at digitalmatter.com.au>
> ---
>  meta/classes/debian.bbclass |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/meta/classes/debian.bbclass b/meta/classes/debian.bbclass
> index 3637e2e..bb4ae11 100644
> --- a/meta/classes/debian.bbclass
> +++ b/meta/classes/debian.bbclass
> @@ -60,7 +60,7 @@ python debian_package_name_hook () {
>                                for f in files:
>                                        if so_re.match(f):
>                                                fp = os.path.join(root, f)
> -                                               cmd = (d.getVar('BUILD_PREFIX', True) or "") + "objdump -p " + fp + " 2>/dev/null"
> +                                               cmd = (d.getVar('TARGET_PREFIX', True) or "") + "objdump -p " + fp + " 2>/dev/null"
>                                                fd = os.popen(cmd)
>                                                lines = fd.readlines()
>                                                fd.close()
> --
> 1.7.3.4
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core at lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core


More information about the Openembedded-core mailing list