diff options
author | Jose E. Marchesi <jose.marchesi@oracle.com> | 2020-08-04 18:01:55 +0200 |
---|---|---|
committer | Jose E. Marchesi <jose.marchesi@oracle.com> | 2020-08-04 18:01:55 +0200 |
commit | 39791af2a2191a2f7765d7809ecedcd0442138bf (patch) | |
tree | bb7328d6686a00b465206f118d8cb9f959b7e165 /gdb/Makefile.in | |
parent | 10c381b53f8d0295287b8205f170dfedd953993b (diff) | |
download | fsf-binutils-gdb-39791af2a2191a2f7765d7809ecedcd0442138bf.zip fsf-binutils-gdb-39791af2a2191a2f7765d7809ecedcd0442138bf.tar.gz fsf-binutils-gdb-39791af2a2191a2f7765d7809ecedcd0442138bf.tar.bz2 |
gdb: support for eBPF
This patch adds basic support for the eBPF target: tdep and build
machinery. The accompanying simulator is introduced in subsequent
patches.
gdb/ChangeLog:
2020-08-04 Weimin Pan <weimin.pan@oracle.com>
Jose E. Marchesi <jose.marchesi@oracle.com>
* configure.tgt: Add entry for bpf-*-*.
* Makefile.in (ALL_TARGET_OBS): Add bpf-tdep.o
(ALLDEPFILES): Add bpf-tdep.c.
* bpf-tdep.c: New file.
* MAINTAINERS: Add bpf target and maintainer.
gdb/doc/ChangeLog:
2020-08-04 Jose E. Marchesi <jose.marchesi@oracle.com>
* gdb.texinfo (Contributors): Add information for the eBPF
support.
(BPF): New section.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 0d6d813..67dc9da 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -719,6 +719,7 @@ ALL_TARGET_OBS = \ avr-tdep.o \ bfin-linux-tdep.o \ bfin-tdep.o \ + bpf-tdep.o \ bsd-uthread.o \ cris-linux-tdep.o \ cris-tdep.o \ @@ -2147,6 +2148,7 @@ ALLDEPFILES = \ avr-tdep.c \ bfin-linux-tdep.c \ bfin-tdep.c \ + bpf-tdep.c \ bsd-kvm.c \ bsd-uthread.c \ csky-linux-tdep.c \ |