|
From: Philippe W. <phi...@sk...> - 2013-11-08 22:42:37
|
On Fri, 2013-11-08 at 19:56 -0200, Felipe Pena wrote: > >> Actually it's a Debian 7 running Linux 3.2.0-4-amd64. > > And have you all the C library development headers (both 32 and 64 bit) > > installed ? > > > > Yes. (I have built a lot of project without problem) > > ii libc6-dev:amd64 2.13-38 amd64 Embedded GNU C Library: Development > Libraries and Header Files > ii libc6-dev-i386 2.13-38 amd64 Embedded GNU C Library: 32-bit > development libraries for AMD64 > ii linux-headers-3.2.0-4-amd64 3.2.51-1 amd64 Header files for Linux > 3.2.0-4-amd64 > ii linux-headers-3.2.0-4-common 3.2.51-1 amd64 Common header files for > Linux 3.2.0-4 > > > Does installing them fix the problem ? > > > > Is valgrind configure doing a bi-arch build ? > > Or only a 64 bits build ? > > > > Yes, It's doing a bi-arch build. > Thanks for the info. >From some web search, it seems that recent Debians (and Ubuntu) have moved a.out.h from /usr/include to /usr/include/linux/a.out.h So, it looks like some configure machinery will be needed to detect if /usr/include/a.out.h is there or if /usr/include/linux/a.out.h is there (or else disable the stabs format reading). Philippe |