All of lore.kernel.org
 help / color / mirror / Atom feed
* libmikmod_3.2.0-beta2, build error
@ 2009-10-02 15:40 mail mail
  2009-10-03 10:14 ` Holger Hans Peter Freyther
  0 siblings, 1 reply; 4+ messages in thread
From: mail mail @ 2009-10-02 15:40 UTC (permalink / raw)
  To: openembedded-devel

Log file here:
NOTE: Running task 1371 of 2265 (ID: 1561,
/home/derek/mini2440/oe/openembedded/recipes/libmikmod/
libmikmod_3.2.0-beta2.bb, do_package)
ERROR: QA Issue with libmikmod: No GNU_HASH in the elf binary:
'/home/derek/mini2440/oe/tmp/work/armv4t-angstrom-linux-gnueabi/libmikmod-3.2.0-beta2-r0/install/libmikmod/usr/lib/libmikmod.so.3.0.0'
ERROR: QA run found fatal errors. Please consider fixing them.
ERROR: Error in executing:
/home/derek/mini2440/oe/openembedded/recipes/libmikmod/
libmikmod_3.2.0-beta2.bb
ERROR: Exception:<type 'exceptions.SystemExit'> Message:1
ERROR: Printing the environment of the function
ERROR: Error in executing:
/home/derek/mini2440/oe/openembedded/recipes/libmikmod/
libmikmod_3.2.0-beta2.bb
ERROR: Exception:<type 'exceptions.SystemExit'> Message:1
ERROR: Printing the environment of the function
ERROR: Error in executing:
/home/derek/mini2440/oe/openembedded/recipes/libmikmod/
libmikmod_3.2.0-beta2.bb
ERROR: Exception:<type 'exceptions.SystemExit'> Message:1
ERROR: Printing the environment of the function
ERROR: Error in executing:
/home/derek/mini2440/oe/openembedded/recipes/libmikmod/
libmikmod_3.2.0-beta2.bb
ERROR: Exception:<type 'exceptions.SystemExit'> Message:1
ERROR: Printing the environment of the function
ERROR: Build of /home/derek/mini2440/oe/openembedded/recipes/libmikmod/
libmikmod_3.2.0-beta2.bb do_package failed


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: libmikmod_3.2.0-beta2, build error
  2009-10-02 15:40 libmikmod_3.2.0-beta2, build error mail mail
@ 2009-10-03 10:14 ` Holger Hans Peter Freyther
  2009-10-04 17:22   ` Michael Lippautz
  0 siblings, 1 reply; 4+ messages in thread
From: Holger Hans Peter Freyther @ 2009-10-03 10:14 UTC (permalink / raw)
  To: openembedded-devel

On Friday 02 October 2009 17:40:53 mail mail wrote:
> Log file here:
> NOTE: Running task 1371 of 2265 (ID: 1561,
> /home/derek/mini2440/oe/openembedded/recipes/libmikmod/
> libmikmod_3.2.0-beta2.bb, do_package)
> ERROR: QA Issue with libmikmod: No GNU_HASH in the elf binary:
> '/home/derek/mini2440/oe/tmp/work/armv4t-angstrom-linux-gnueabi/libmikmod-3
> .2.0-beta2-r0/install/libmikmod/usr/lib/libmikmod.so.3.0.0' ERROR: QA run
>  found fatal errors. Please consider fixing them.


Did you consider doing the above? The libmikmod buildsystem is ignoring the OE 
LDFLAGS...

z.



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: libmikmod_3.2.0-beta2, build error
  2009-10-03 10:14 ` Holger Hans Peter Freyther
@ 2009-10-04 17:22   ` Michael Lippautz
  2009-10-14  8:33     ` Holger Hans Peter Freyther
  0 siblings, 1 reply; 4+ messages in thread
From: Michael Lippautz @ 2009-10-04 17:22 UTC (permalink / raw)
  To: openembedded-devel

Should be as easy as the following git diff. Correct me if I am wrong.

Regards,
Michael

diff --git a/recipes/libmikmod/libmikmod_3.2.0-beta2.bb
b/recipes/libmikmod/libmikmod_3.2.0-beta2.bb
index 07e3af9..fd23568 100644
--- a/recipes/libmikmod/libmikmod_3.2.0-beta2.bb
+++ b/recipes/libmikmod/libmikmod_3.2.0-beta2.bb
@@ -3,8 +3,12 @@ SECTION = "libs"
 PRIORITY = "optional"
 LICENSE = "LGPL"

+PR="r1"
+
 DEFAULT_PREFERENCE = "-1"

+TARGET_CC_ARCH += "${LDFLAGS}"
+
 SRC_URI = "\
   http://mikmod.raphnet.net/files/libmikmod-${PV}.tar.gz \
   file://m4.patch;patch=1 \


Am Samstag, den 03.10.2009, 12:14 +0200 schrieb Holger Hans Peter
Freyther:
> On Friday 02 October 2009 17:40:53 mail mail wrote:
> > Log file here:
> > NOTE: Running task 1371 of 2265 (ID: 1561,
> > /home/derek/mini2440/oe/openembedded/recipes/libmikmod/
> > libmikmod_3.2.0-beta2.bb, do_package)
> > ERROR: QA Issue with libmikmod: No GNU_HASH in the elf binary:
> > '/home/derek/mini2440/oe/tmp/work/armv4t-angstrom-linux-gnueabi/libmikmod-3
> > .2.0-beta2-r0/install/libmikmod/usr/lib/libmikmod.so.3.0.0' ERROR: QA run
> >  found fatal errors. Please consider fixing them.
> 
> 
> Did you consider doing the above? The libmikmod buildsystem is ignoring the OE 
> LDFLAGS...
> 
> z.





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: libmikmod_3.2.0-beta2, build error
  2009-10-04 17:22   ` Michael Lippautz
@ 2009-10-14  8:33     ` Holger Hans Peter Freyther
  0 siblings, 0 replies; 4+ messages in thread
From: Holger Hans Peter Freyther @ 2009-10-14  8:33 UTC (permalink / raw)
  To: openembedded-devel

On Sunday 04 October 2009 19:22:51 Michael Lippautz wrote:
> Should be as easy as the following git diff. Correct me if I am wrong.
> 
> Regards,
> Michael
> 
> diff --git a/recipes/libmikmod/libmikmod_3.2.0-beta2.bb
> b/recipes/libmikmod/libmikmod_3.2.0-beta2.bb
> index 07e3af9..fd23568 100644
> --- a/recipes/libmikmod/libmikmod_3.2.0-beta2.bb
> +++ b/recipes/libmikmod/libmikmod_3.2.0-beta2.bb
> @@ -3,8 +3,12 @@ SECTION = "libs"
>  PRIORITY = "optional"
>  LICENSE = "LGPL"
> 
> +PR="r1"
> +
>  DEFAULT_PREFERENCE = "-1"
> 
> +TARGET_CC_ARCH += "${LDFLAGS}"
> +
>  SRC_URI = "\
>    http://mikmod.raphnet.net/files/libmikmod-${PV}.tar.gz \
>    file://m4.patch;patch=1 \

Could you come up with a patch along the lines of the ldflags.patch applied in 
the other libmidmod directory?

holger



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-10-14  8:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-02 15:40 libmikmod_3.2.0-beta2, build error mail mail
2009-10-03 10:14 ` Holger Hans Peter Freyther
2009-10-04 17:22   ` Michael Lippautz
2009-10-14  8:33     ` Holger Hans Peter Freyther

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.