public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] gdb: Fix native build on Linux/Alpha.
@ 2019-09-18 19:19 Simon Marchi
  0 siblings, 0 replies; only message in thread
From: Simon Marchi @ 2019-09-18 19:19 UTC (permalink / raw)
  To: gdb-cvs

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=7a27b85f6d9b5eea9bd1493f903158fbea4b2231

commit 7a27b85f6d9b5eea9bd1493f903158fbea4b2231
Author: Christian Groessler <chris@groessler.org>
Date:   Wed Sep 11 22:19:45 2019 +0000

    gdb: Fix native build on Linux/Alpha.
    
    Fixes:
    
      CXX    alpha-linux-nat.o
    alpha-linux-nat.c: In member function 'virtual CORE_ADDR alpha_linux_nat_target::register_u_offset(gdbarch*, int, int)':
    alpha-linux-nat.c:93:16: error: 'gdbarch_pc_regnum' was not declared in this scope
       if (regno == gdbarch_pc_regnum (gdbarch))
                    ^~~~~~~~~~~~~~~~~
    alpha-linux-nat.c:93:16: note: suggested alternative: 'gdbarch_info'
       if (regno == gdbarch_pc_regnum (gdbarch))
                    ^~~~~~~~~~~~~~~~~
                    gdbarch_info
    alpha-linux-nat.c:97:15: error: 'gdbarch_fp0_regnum' was not declared in this scope
       if (regno < gdbarch_fp0_regnum (gdbarch))
                   ^~~~~~~~~~~~~~~~~~
    alpha-linux-nat.c:97:15: note: suggested alternative: 'gdbarch_info'
       if (regno < gdbarch_fp0_regnum (gdbarch))
                   ^~~~~~~~~~~~~~~~~~
                   gdbarch_info
    make[2]: *** [Makefile:1638: alpha-linux-nat.o] Error 1
    make[2]: Leaving directory '/home/chris/tmp/binutils-gdb/gdb'
    
    2019-09-12  Christian Groessler  <chris@groessler.org>
    
           * alpha-linux-nat.c: Include gdbarch.h.

Diff:
---
 gdb/ChangeLog         | 4 ++++
 gdb/alpha-linux-nat.c | 1 +
 2 files changed, 5 insertions(+)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 796ade3..1ad694a 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2019-09-18  Christian Groessler  <chris@groessler.org>
+
+	* alpha-linux-nat.c: Include gdbarch.h.
+
 2019-09-18  Simon Marchi  <simon.marchi@polymtl.ca>
 
 	* ui-file.c: Include cli/cli-style.h.
diff --git a/gdb/alpha-linux-nat.c b/gdb/alpha-linux-nat.c
index 1880697..9f83ad7 100644
--- a/gdb/alpha-linux-nat.c
+++ b/gdb/alpha-linux-nat.c
@@ -22,6 +22,7 @@
 #include "linux-nat-trad.h"
 
 #include "alpha-tdep.h"
+#include "gdbarch.h"
 
 #include "nat/gdb_ptrace.h"
 #include <alpha/ptrace.h>


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2019-09-18 19:19 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-18 19:19 [binutils-gdb] gdb: Fix native build on Linux/Alpha Simon Marchi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).