|
From: Felipe P. <fel...@gm...> - 2013-11-07 21:26:38
|
Hello, I was just trying to build Valgrind using ./configure without options, and got an error, see below: m_debuginfo/readstabs.c:57:39: fatal error: a.out.h: No such file or directory compilation terminated. Changing the related code as follow below fixes it. Index: coregrind/m_debuginfo/readstabs.c =================================================================== --- coregrind/m_debuginfo/readstabs.c (revision 13710) +++ coregrind/m_debuginfo/readstabs.c (working copy) @@ -54,7 +54,7 @@ /* --- !!! --- EXTERNAL HEADERS start --- !!! --- */ #if defined(VGO_linux) -# include <a.out.h> /* stabs defns */ +# include <linux/a.out.h> /* stabs defns */ #elif defined(VGO_darwin) # include <mach-o/nlist.h> # define n_other n_sect -- Regards, Felipe Pena |