aboutsummaryrefslogtreecommitdiff
path: root/include/ChangeLog
diff options
context:
space:
mode:
authorNelson Chu <nelson.chu@sifive.com>2020-06-02 09:44:13 +0800
committerNelson Chu <nelson.chu@sifive.com>2020-06-03 09:20:59 +0800
commit44730156af5f411d2c47af22558e7bd84dc4fcea (patch)
tree063920ff99e17f347f29225127366a795594f653 /include/ChangeLog
parent721276a249df7be8fdda2bc18c70beb5752e439e (diff)
downloadgdb-44730156af5f411d2c47af22558e7bd84dc4fcea.zip
gdb-44730156af5f411d2c47af22558e7bd84dc4fcea.tar.gz
gdb-44730156af5f411d2c47af22558e7bd84dc4fcea.tar.bz2
RISC-V: Fix the error when building RISC-V linux native gdbserver.
The original report is as follow, https://sourceware.org/pipermail/binutils/2020-June/111383.html Inlcude the bfd.h in the include/opcode/riscv.h may cause gdbserver fail to build. I just want to use the `bfd_boolean` in the opcodes/riscv-opc.c, but I didn't realize this cause the build failed. Fortunately, I can also use the `int` as the function return types just like others in the opcodes/riscv-opc.c. include/ * opcode/riscv.h: Remove #include "bfd.h". And change the return types of riscv_get_isa_spec_class and riscv_get_priv_spec_class from bfd_boolean to int. opcodes/ * riscv-opc.c (riscv_get_isa_spec_class): Change bfd_boolean to int. (riscv_get_priv_spec_class): Likewise.
Diffstat (limited to 'include/ChangeLog')
-rw-r--r--include/ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 08eadb6..5c0a82b 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,9 @@
+2020-06-03 Nelson Chu <nelson.chu@sifive.com>
+
+ * opcode/riscv.h: Remove #include "bfd.h". And change the return
+ types of riscv_get_isa_spec_class and riscv_get_priv_spec_class
+ from bfd_boolean to int.
+
2020-05-28 Alan Modra <amodra@gmail.com>
PR 26044