Re: [oe] [2011.03-maintenance] unsatisfied dependencies to libgcc

2011-08-05 Thread Steffen Sledz
On 04.08.2011 08:29, Steffen Sledz wrote: In the last days we switched our local development from an older oe-dev master to 2011.03-maintenance branch and hit an annoying problem. The test builds on various developer machines were successful but the build on our continuous integration

Re: [oe] [2011.03-maintenance] unsatisfied dependencies to libgcc

2011-08-05 Thread Steffen Sledz
On 04.08.2011 08:29, Steffen Sledz wrote: In the last days we switched our local development from an older oe-dev master to 2011.03-maintenance branch and hit an annoying problem. The test builds on various developer machines were successful but the build on our continuous integration

Re: [oe] 2011.03-maintenance: eglibc-binary-localedata packages missing on image

2011-08-05 Thread Hauser, Wolfgang (external)
I would look at classes/libc-package.bbclass and recipes/eglibc/eglibc-package.inc in oe.dev and see if there's been a fix here that needs to be back ported / cherry-picked. Unfortunately there are no changes between the oe.dev (remotes/origin/master) and the remotes/origin/2011.03-maintenance.

Re: [oe] [PATCH] ptpd: added recipe for v1.1.0.

2011-08-05 Thread Chris Verges
Why not jump to version 2.1.0 right away... My project has a need for 1.1.0, so I bumped to that for now. I also haven't verified the build process to see if 2.x builds the same as 1.x. Thanks, Chris ___ Openembedded-devel mailing list

Re: [oe] classpath in 2011.03-maintenance

2011-08-05 Thread George C. Huntington, III
classpath is not actually building correctly, a bug in the shell script wrapper for calling javac is eating the error code from javac, and making it look like things built ok when they did not. On Fri, Aug 5, 2011 at 10:16 AM, Jesse Gilles jgil...@multitech.com wrote: On 07/07/2011 06:39 AM,

Re: [oe] classpath in 2011.03-maintenance

2011-08-05 Thread Henning Heinold
Hi, we made some hacks bescause for some java packages javac fails at random and we just try to recompile it for some rounds and have a higher chance to get it done. To admit the ecj script is now diffrent from the one I wrote original, maybee Stefan Schmidt made some more tweaks. As side note

Re: [oe] classpath in 2011.03-maintenance

2011-08-05 Thread George C. Huntington, III
I posted a patch that makes the wrapper script return the error code if it fails after 5 retries. it is on patchwork. http://patches.openembedded.org/patch/7249/ I don't know if anyone has reviewed it, but it worked for me. On Fri, Aug 5, 2011 at 11:17 AM, Henning Heinold

Re: [oe] classpath in 2011.03-maintenance

2011-08-05 Thread Henning Heinold
On Fri, Aug 05, 2011 at 11:38:22AM -0400, George C. Huntington, III wrote: I posted a patch that makes the wrapper script return the error code if it fails after 5 retries. it is on patchwork. http://patches.openembedded.org/patch/7249/ Did you try to compile openjdk with it serval times

Re: [oe] [2011.03-maintenance] Pull request #22

2011-08-05 Thread Tom Rini
On Thu, Aug 4, 2011 at 1:04 AM, Koen Kooi k...@dominion.thruhere.net wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Tom, Please pull the 2 commits from here: URI: git://dominion.thruhere.net/var/cache/git/openembedded.git Branch: 2011.03-maintenance Joel A Fernandes (1):      

Re: [oe] classpath in 2011.03-maintenance

2011-08-05 Thread George C. Huntington, III
only 2 times under 64 bit On Fri, Aug 5, 2011 at 11:43 AM, Henning Heinold hein...@inf.fu-berlin.dewrote: On Fri, Aug 05, 2011 at 11:38:22AM -0400, George C. Huntington, III wrote: I posted a patch that makes the wrapper script return the error code if it fails after 5 retries. it is on

[oe] [meta-oe][PATCH V2] systemd: Link with librt explicitly on uclibc

2011-08-05 Thread Khem Raj
Latest systemd has started to use mq_* functions which are found on librt in uclibc. Signed-off-by: Khem Raj raj.k...@gmail.com --- meta-oe/recipes-core/systemd/systemd_git.bb |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/meta-oe/recipes-core/systemd/systemd_git.bb

Re: [oe] classpath in 2011.03-maintenance

2011-08-05 Thread Jesse Gilles
On Fri, 2011-08-05 at 11:38 -0400, George C. Huntington, III wrote: I posted a patch that makes the wrapper script return the error code if it fails after 5 retries. it is on patchwork. http://patches.openembedded.org/patch/7249/ I don't know if anyone has reviewed it, but it worked for

Re: [oe] classpath in 2011.03-maintenance

2011-08-05 Thread George C. Huntington, III
the -bootclasspath '' part where it uses the single quotes next to eack other, if you replace that with :: two colons it will magically work I think for some reason it doesn't like '' for an empty path but two path separators back to back :: will work great. On Fri, Aug 5, 2011 at 4:44 PM,

[oe] [PATCH 2/2] klibc.bbclass: shared include for building against klibc

2011-08-05 Thread Andrea Adami
* from meta-zaurus * reworked in meta-smartphones/meta-zaurus Signed-off-by: Andrea Adami andrea.ad...@gmail.com --- meta-oe/classes/klibc.bbclass |9 + 1 files changed, 9 insertions(+), 0 deletions(-) create mode 100644 meta-oe/classes/klibc.bbclass diff --git

[oe] [PATCH 0/2] [meta-oe] add klibc infrastructure for crosscompiling

2011-08-05 Thread Andrea Adami
* We don't consider the case of an SDK yet. * * from org.openembedded.dev * reworked in meta-smartphones/meta-zaurus * * Klibc builds against kernel headers thuus is machine-specific. * The crosscompiler, though, is just a perl wrapper around gcc-cross * so can have the very same arch. * * Initial

Re: [oe] classpath in 2011.03-maintenance

2011-08-05 Thread Jesse Gilles
On Fri, 2011-08-05 at 17:24 -0400, George C. Huntington, III wrote: the -bootclasspath '' part where it uses the single quotes next to eack other, if you replace that with :: two colons it will magically work I think for some reason it doesn't like '' for an empty path but two path

Re: [oe] classpath in 2011.03-maintenance

2011-08-05 Thread Stefan Schmidt
Hello. On Fri, 2011-08-05 at 11:38, George C. Huntington, III wrote: I posted a patch that makes the wrapper script return the error code if it fails after 5 retries. it is on patchwork. http://patches.openembedded.org/patch/7249/ I don't know if anyone has reviewed it, but it worked for