diff options
author | Hui Zhu <teawater@gmail.com> | 2009-04-30 03:04:28 +0000 |
---|---|---|
committer | Hui Zhu <teawater@gmail.com> | 2009-04-30 03:04:28 +0000 |
commit | b7f6bf22997d7ff8b9218e82c90d2e3dfcb08d62 (patch) | |
tree | 583601a56c9ef3ed130dbb8d0c4d70aca4a5c8c0 /gdb/Makefile.in | |
parent | 69d05d3898f104fab077edf3c80e4f158084a8f4 (diff) | |
download | gdb-b7f6bf22997d7ff8b9218e82c90d2e3dfcb08d62.zip gdb-b7f6bf22997d7ff8b9218e82c90d2e3dfcb08d62.tar.gz gdb-b7f6bf22997d7ff8b9218e82c90d2e3dfcb08d62.tar.bz2 |
Linux process record and replay support.
* Makefile.in (ALLDEPFILES): Add linux-record.c.
(ALL_TARGET_OBS): Add linux-record.o.
* configure.tgt (x86_64-*-linux*): Add linux-record.o.
(i[34567]86-*-linux*): Add linux-record.o.
* linux-record.c, linux-record.h: New file.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index fbdc217..bafd73d 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -519,7 +519,8 @@ ALL_TARGET_OBS = \ prologue-value.o \ symfile-mem.o \ corelow.o \ - windows-tdep.o + windows-tdep.o \ + linux-record.o # Host-dependent makefile fragment comes in here. @host_makefile_frag@ @@ -1312,6 +1313,7 @@ ALLDEPFILES = \ libunwind-frame.c \ linux-fork.c \ linux-tdep.c \ + linux-record.c \ m68hc11-tdep.c \ m32r-tdep.c \ m32r-linux-nat.c m32r-linux-tdep.c \ |