Re: [Valgrind-users] Valgrind test suite on different target.

2010-09-15 Thread Alessandro Biasci
On 14/09/2010 16:59, John Reiser wrote: $ make CROSS_COMPILE=powerpc-860-linux-gnu CC=powerpc-860-linux-gnu-gcc regtest Now I'd like to execute this tests on the target platform (that isn't the same of compile) and not after the compile step [which was performed on the build

[Valgrind-users] [x64+libvlc] unhandled instruction bytes: 0xF 0xF 0xC0 0x9E 0xF 0xE

2010-09-15 Thread Yuri T.
Hi all, I have this error on Ubuntu x64 10.04.1 with valgrind from svn. uname -a Linux br0ub1 2.6.32-24-server #42-Ubuntu SMP Fri Aug 20 15:38:55 UTC 2010 x86_64 GNU/Linux vex amd64-IR: unhandled instruction bytes: 0xF 0xF 0xC0 0x9E 0xF 0xE ==15122== Process terminating with default action of

Re: [Valgrind-users] [x64+libvlc] unhandled instruction bytes: 0xF 0xF 0xC0 0x9E 0xF 0xE

2010-09-15 Thread Alexander Potapenko
This is the 3DNow! pfadd instruction. Looks like Valgrind doesn't currently support 3DNow!, but the cpuid implementation claims it does, so your code tries to execute it. Julian, is it possible to disable all unsupported CPU extensions? A somewhat related bug report is

Re: [Valgrind-users] Valgrind test suite on different target.

2010-09-15 Thread Bart Van Assche
On Wed, Sep 15, 2010 at 9:58 AM, Alessandro Biasci a.bia...@evidence.eu.com wrote: On 14/09/2010 16:59, John Reiser wrote: $ make CROSS_COMPILE=powerpc-860-linux-gnu CC=powerpc-860-linux-gnu-gcc regtest Now I'd like to execute this tests on the target platform (that isn't the same of

Re: [Valgrind-users] Detect Valgrind version number

2010-09-15 Thread Nicholas Nethercote
On Wed, Aug 25, 2010 at 5:34 PM, Oliver Schneider oli...@f-prot.com wrote: maybe someone can tell me whether my little shell snippet is based on the right assumptions in order to find the Valgrind version: valgrind --version|sed 's/valgrind-//g;s/\([0-9]*\.[0-9]\)\..*/\1/' Can one rely on