Skip to content
This repository has been archived by the owner on Aug 17, 2022. It is now read-only.

Make native gdb builds work. #126

Merged
merged 1 commit into from
Dec 28, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions gdb/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -2636,6 +2636,7 @@ ALLDEPFILES = \
ravenscar-thread.c \
remote-sim.c \
riscv-tdep.c \
riscv-linux-nat.c \
riscv-linux-tdep.c \
rl78-tdep.c \
rs6000-lynx178-tdep.c \
Expand Down
4 changes: 4 additions & 0 deletions gdb/configure.nat
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,10 @@ case ${gdb_host} in
# Host: PowerPC, running Linux
NATDEPFILES="${NATDEPFILES} ppc-linux-nat.o"
;;
riscv)
# Host: RISC-V, running Linux
NATDEPFILES="${NATDEPFILES} riscv-linux-nat.o"
;;
s390)
# Host: S390, running Linux
NATDEPFILES="${NATDEPFILES} s390-linux-nat.o"
Expand Down