IPA: Fix build problem on !HAVE_GETAUXVAL
authorMarcin Kościelnicki <koriakin@0x04.net>
Sun, 3 Apr 2016 12:25:25 +0000 (14:25 +0200)
committerMarcin Kościelnicki <koriakin@0x04.net>
Sun, 3 Apr 2016 16:27:50 +0000 (18:27 +0200)
These files need AT_PHDR, which is defined in elf.h.  If HAVE_GETAUXVAL
is set, it's implicitely included by sys/auxv.h.  Include it manually
for the opposite case.

gdb/gdbserver/ChangeLog:

* linux-aarch64-ipa.c: Add <elf.h> include.
* linux-ppc-ipa.c: Add <elf.h> include.
* linux-s390-ipa.c: Add <elf.h> include.

gdb/gdbserver/ChangeLog
gdb/gdbserver/linux-aarch64-ipa.c
gdb/gdbserver/linux-ppc-ipa.c
gdb/gdbserver/linux-s390-ipa.c

index 39a1be0..7b20fdb 100644 (file)
@@ -1,3 +1,9 @@
+2016-04-03  Marcin Kościelnicki  <koriakin@0x04.net>
+
+       * linux-aarch64-ipa.c: Add <elf.h> include.
+       * linux-ppc-ipa.c: Add <elf.h> include.
+       * linux-s390-ipa.c: Add <elf.h> include.
+
 2016-03-31  Marcin Kościelnicki  <koriakin@0x04.net>
 
        * tracepoint.c (gdb_collect_ptr): Remove const qualifier.
index 50caeae..601d61c 100644 (file)
@@ -21,6 +21,7 @@
 #include "server.h"
 #include <sys/mman.h>
 #include "tracepoint.h"
+#include <elf.h>
 #ifdef HAVE_GETAUXVAL
 #include <sys/auxv.h>
 #endif
index 8489c6e..d8f118e 100644 (file)
@@ -22,6 +22,7 @@
 #include <sys/mman.h>
 #include "tracepoint.h"
 #include "linux-ppc-tdesc.h"
+#include <elf.h>
 #ifdef HAVE_GETAUXVAL
 #include <sys/auxv.h>
 #endif
index a9f86ad..cdf2fe7 100644 (file)
@@ -22,6 +22,7 @@
 #include <sys/mman.h>
 #include "tracepoint.h"
 #include "linux-s390-tdesc.h"
+#include <elf.h>
 #ifdef HAVE_GETAUXVAL
 #include <sys/auxv.h>
 #endif