|
From: Bart V. A. <bva...@ac...> - 2010-07-21 14:59:11
|
On Wed, Jul 21, 2010 at 4:30 PM, Karl Krach <mai...@bl...>wrote: > Hello, > > I want to compile the Valgrind on x86 for PowerPC target. I use the > toolchain > from Buildroot, and the compilation stops with the following error message: > > /opt/toolchain/usr/include/a.out.h:1:25: > error: linux/a.out.h: No such file or directory > > I guess, it comes from the disabled kernel option "BINFMT_AOUT: Kernel > support > for a.out and ECOFF binaries". The problem is, that there is no kernel > support > of a.out (HAVE_AOUT) for PowerPC. > > Is there a way, to disable the a.out support of valgrind? On the target we > want to analyze ELF binaries only. > Valgrind uses <a.out.h> for the definition of 'struct nlist'. That definition is also present in <nlist.h>. Does your system have the header file /usr/include/nlist.h ? Bart. |