[Valgrind-users] Valgrind 3.10.0 support for ICC

2014-09-26 Thread Gregory Czajkowski
My experiences building with ICC.. #1 it failed out of the box with checking for a supported version of gcc... no (13.1.3) configure: error: please use gcc >= 3.0 or clang >= 2.9 I had to make some hacks in ./configure to support ICC notclang-13.*) { $as_echo "$as_me:${as_lineno-$LINEN

Re: [Valgrind-users] Unique log filename

2014-09-26 Thread Eliot Moss
On 9/26/2014 12:38 PM, Julian Seward wrote: > On 09/25/2014 12:52 PM, Eliot Moss wrote: >> I started updating the valgrind documentation to add description >> of this new feature, and expect to submit a patch soon for >> developer approval. > > https://bugs.kde.org/show_bug.cgi?id=339405 > is the b

Re: [Valgrind-users] Wrapping function for strcpy

2014-09-26 Thread Myoungkyu Song
Please see the followings. After posting my question at that moment, I realized that I should specify the shared library name, because it's in libc as you said. However, it didn't work using VG_Z_LIBC_SONAME. Best regards, Myoungkyu ===

Re: [Valgrind-users] Unique log filename

2014-09-26 Thread Julian Seward
On 09/25/2014 12:52 PM, Eliot Moss wrote: > I started updating the valgrind documentation to add description > of this new feature, and expect to submit a patch soon for > developer approval. https://bugs.kde.org/show_bug.cgi?id=339405 is the bug, yes? J

Re: [Valgrind-users] Problems with valgrind after a fork() and starting a container

2014-09-26 Thread Julian Seward
Yes, if you get some details on how/why it fails, that would be good. Also, filing a bug in bugzilla (see http://www.valgrind.org/support/bug_reports.html) will ensure your bug report doesn't get lost later on. J On 09/25/2014 02:58 PM, Vallevand, Mark K wrote: > I tried that option. Doesn’t

Re: [Valgrind-users] valgrind run error , help me, thx

2014-09-26 Thread Julian Seward
That's a bit strange. Can you please try with the recently released 3.10.0 version, and see if you still have the problem? Thanks. J On 09/25/2014 01:41 PM, lchquan wrote: > # /opt/vg/bin/valgrind ls > ==5290== Memcheck, a memory error detector > ==5290== Copyright (C) 2002-2013, and GNU GPL'

Re: [Valgrind-users] Valgrind and glibc's CPU detection

2014-09-26 Thread Julian Seward
You need to say what CPU this is on. For x86_64 I think this is impossible, because all x86_64 processors support at least SSE2. For x86 (32 bit) this might just be possible. In VEX/priv/guest_x86_toIR.c, find the code that handles CPUID case 0xA2: { /* CPUID */ and change it so that it

Re: [Valgrind-users] valgrind-3.10 does not link on

2014-09-26 Thread Julian Seward
Er, this isn't good. Can you file a bug report as described at http://www.valgrind.org/support/bug_reports.html so that this gets tracked properly? If it just remains on the mailing list it is likely to get forgotten. Thanks. J On 09/18/2014 10:09 AM, Matthias Apitz wrote: > > Hello, > > T

Re: [Valgrind-users] Wrapping function for strcpy

2014-09-26 Thread Julian Seward
On 09/23/2014 03:31 AM, Myoungkyu Song wrote: > I have a question, which maybe was discussed. I would like to implement a > wrapper function for standard API such as "strcpy". However, I failed to > do. When I tested a user-defined function like "hello(char *, char *)" > below, I successfully wr