Re: [OE-core] binutils 2.23 call for testing the recipes

2012-08-12 Thread Martin Jansa
On Sat, Aug 11, 2012 at 10:30:25PM -0700, Khem Raj wrote:
 On Sat, Aug 11, 2012 at 1:04 AM, Martin Jansa martin.ja...@gmail.com wrote:
 
  | === If you get failures below, please file a bug describing the error
  | === and your environment (compiler and linker versions), and use
  | === --disable-elf-hack until this is fixed.
  | ===
  | 
  /var/lib/jenkins/jobs/shr-core-branches/workspace/shr-core/tmp-eglibc/work/armv7a-vfp-neon-oe-linux-gnueabi/firefox-10.0.2-r2/mozilla-release/build/unix/elfhack/elfhack
   -b test.so
  | test.so: terminate called after throwing an instance of 
  'std::runtime_error'
  |   what():  Unsupported relocation type
  | make[7]: *** [test.so] Aborted (core dumped)
  | make[7]: Leaving directory 
  `/var/lib/jenkins/jobs/shr-core-branches/workspace/shr-core/tmp-eglibc/work/armv7a-vfp-neon-oe-linux-gnueabi/firefox-10.0.2-r2/mozilla-release/build/unix/elfhack'
 
 it might be you are seeing same bug in elfhack as described here
 
 https://bugzilla.mozilla.org/show_bug.cgi?id=632920

I've disabled elf hack yesterday
https://github.com/OSSystems/meta-browser/commit/5d176cb405497e5c5823fa14dbae353a2e1e3730
and it did build fine with 2.22 as well as 23, but GNUtoo then reported that 
it still produces Illegal instructions.

Cheers,

-- 
Martin 'JaMa' Jansa jabber: martin.ja...@gmail.com


signature.asc
Description: Digital signature
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core


[OE-core] [oe-core] classes: populate_sdk_base: Refine search for SDK env setup file

2012-08-12 Thread Marc Reilly
This fixes a relocation failure when installing SDKs built with
meta-toolchain-qte.
SDKs build with meta-toolchain-qte have a file named environment-setup
in them as well as the environment-setup-MACH-WHATEVER-BLAH file.
This patch changes the find name pattern so that only the appropriate
file is matched.

Signed-off-by: Marc Reilly m...@cpdesign.com.au
---
 meta/classes/populate_sdk_base.bbclass |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/classes/populate_sdk_base.bbclass 
b/meta/classes/populate_sdk_base.bbclass
index 0d19741..60c67bd 100644
--- a/meta/classes/populate_sdk_base.bbclass
+++ b/meta/classes/populate_sdk_base.bbclass
@@ -154,7 +154,7 @@ echo done
 
 echo -n Setting it up...
 # fix environment paths
-env_setup_script=$(find $target_sdk_dir -name environment-setup*)
+env_setup_script=$(find $target_sdk_dir -name environment-setup-*)
 sed -e s:$DEFAULT_INSTALL_DIR:$target_sdk_dir:g -i $env_setup_script
 
 # fix dynamic loader paths in all ELF SDK binaries
-- 
1.7.7


___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core