This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [PATCH 0/2] GDB process record and reverse debugging improvements for arm*-linux*
- From: Yao Qi <yao at codesourcery dot com>
- To: Omair Javaid <omair dot javaid at linaro dot org>
- Cc: <gdb-patches at sourceware dot org>, Patch Tracking <patches at linaro dot org>
- Date: Thu, 24 Oct 2013 09:40:46 +0800
- Subject: Re: [PATCH 0/2] GDB process record and reverse debugging improvements for arm*-linux*
- Authentication-results: sourceware.org; auth=none
- References: <CANW4E-3+-9FTB2C9tYO42CAV7mZeUP8ayPR+3sH1F5bweJM_7Q at mail dot gmail dot com>
On 10/24/2013 08:09 AM, Omair Javaid wrote:
gdb/testsuite/lib:
Remove "/lib" ....
2013-10-24 Omair Javaid<omair.javaid@linaro.org>
* gdb.exp: Enable gdb.reverse testsuite for arm*-linux* targets.
and add "lib/" before "gdb.exp:". Since the ChangeLog file is located
in gdb/testsuite instead of gdb/testsuite/lib.
RCS file: /cvs/src/src/gdb/testsuite/lib/gdb.exp,v
retrieving revision 1.250
diff -u -p -r1.250 gdb.exp
--- gdb/testsuite/lib/gdb.exp 18 Oct 2013 20:40:03 -0000 1.250
+++ gdb/testsuite/lib/gdb.exp 23 Oct 2013 20:34:49 -0000
@@ -1774,7 +1774,8 @@ proc supports_process_record {} {
return [target_info gdb,use_precord]
}
- if { [istarget "x86_64-*-linux*"] || [istarget "i\[34567\]86-*-linux*"] } {
+ if { [istarget "arm*-*-*"] || [istarget "x86_64-*-linux*"]
It should be arm*-*-linux* ...
+ || [istarget "i\[34567\]86-*-linux*"] } {
return 1
}
@@ -1789,7 +1790,8 @@ proc supports_reverse {} {
return [target_info gdb,can_reverse]
}
- if { [istarget "x86_64-*-linux*"] || [istarget "i\[34567\]86-*-linux*"] } {
+ if { [istarget "arm*-*-*"] || [istarget "x86_64-*-linux*"]
+ || [istarget "i\[34567\]86-*-linux*"] } {
return 1
}
... and here.
--
Yao (éå)