This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH 0/2] GDB process record and reverse debugging improvements for arm*-linux*


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 (éå)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]