summaryrefslogtreecommitdiffstats
path: root/scripts/remote-gdb
diff options
context:
space:
mode:
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-03-18 21:10:56 +0000
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-03-18 21:10:56 +0000
commitffb6292494f71f587c1fbf9c411a654f1c5e641b (patch)
treebf3997de372ac6f1a344149e2cfb88ae50a6ee09 /scripts/remote-gdb
parent56f1be7e5c2c5851404fee9a74d9a04e7e975b00 (diff)
[scripts] remote-gdb:
* use sysroot instead of solib search paths * don't query arch if there's only one choice git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20290 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts/remote-gdb')
-rwxr-xr-xscripts/remote-gdb31
1 files changed, 17 insertions, 14 deletions
diff --git a/scripts/remote-gdb b/scripts/remote-gdb
index 9701b31c1..60efb9703 100755
--- a/scripts/remote-gdb
+++ b/scripts/remote-gdb
@@ -33,13 +33,20 @@ if( opendir SD, "$Bin/../staging_dir" )
}
}
- # Query arch
- do {
- print("Target? > ");
- chomp($tid = <STDIN>);
- } while( !defined($tid) || $tid !~ /^\d+$/ || $tid < 1 || $tid > @arches );
+ if( @arches > 1 )
+ {
+ # Query arch
+ do {
+ print("Target? > ");
+ chomp($tid = <STDIN>);
+ } while( !defined($tid) || $tid !~ /^\d+$/ || $tid < 1 || $tid > @arches );
- ($arch, $libc) = @{$arches[$tid-1]};
+ ($arch, $libc) = @{$arches[$tid-1]};
+ }
+ else
+ {
+ ($arch, $libc) = @{$arches[0]};
+ }
}
closedir SD;
@@ -47,18 +54,14 @@ if( opendir SD, "$Bin/../staging_dir" )
# Find gdb
my ($gdb) = glob("$Bin/../build_dir/toolchain-${arch}_*_${libc}/gdb-*/gdb/gdb");
- if( -x $gdb )
+ if( defined($gdb) && -x $gdb )
{
my ( $fh, $fp ) = tempfile();
- # Find library paths
- my $libdirs = join ':', (
- glob("$Bin/../staging_dir/target-${arch}_${libc}/root-*/{,usr/}lib/"),
- glob("$Bin/../staging_dir/target-${arch}_${libc}/{,usr/}lib/"),
- glob("$Bin/../staging_dir/toolchain-${arch}_*_${libc}/lib/")
- );
+ # Find sysroot
+ my ($sysroot) = glob("$Bin/../staging_dir/target-${arch}_${libc}/root-*/");
- print $fh "set solib-search-path $libdirs\n";
+ print $fh "set sysroot $sysroot\n" if $sysroot;
print $fh "target remote $ARGV[0]\n";
system($gdb, '-x', $fp, $ARGV[1]);