X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=scripts%2Fremote-gdb;h=a470ac71d24480460301a1460125ba427e947eed;hb=a26c58d3b4f8b06dc0eefd18ef8a51ca6de863a0;hp=60efb9703fc8d4239da3611d6a2e5ded2d5cd6d1;hpb=ca217ab0d53e73271a194a2c3517464d222936b0;p=openwrt%2Fsvn-archive%2Farchive.git diff --git a/scripts/remote-gdb b/scripts/remote-gdb index 60efb9703f..a470ac71d2 100755 --- a/scripts/remote-gdb +++ b/scripts/remote-gdb @@ -14,7 +14,7 @@ if( opendir SD, "$Bin/../staging_dir" ) { my ( $tid, $arch, $libc, @arches ); - if( $ARGV[1] =~ m!\btarget-([^_/]+)_([^_/]+)\b! ) + if( $ARGV[1] =~ m!\btarget-(.+?)_([^_]+libc[^/]+)\b!i ) { print("Using target $1 ($2)\n"); ($arch, $libc) = ($1, $2); @@ -26,7 +26,7 @@ if( opendir SD, "$Bin/../staging_dir" ) while( defined( my $e = readdir SD ) ) { - if( -d "$Bin/../staging_dir/$e" && $e =~ /^target-([^_]+)_([^_]+)/ ) + if( -d "$Bin/../staging_dir/$e" && $e =~ /^target-(.+?)_([^_]+libc.+)/i ) { push @arches, [ $1, $2 ]; printf(" %2d) %s (%s)\n", @arches + 0, $1, $2); @@ -52,8 +52,7 @@ if( opendir SD, "$Bin/../staging_dir" ) closedir SD; # Find gdb - my ($gdb) = glob("$Bin/../build_dir/toolchain-${arch}_*_${libc}/gdb-*/gdb/gdb"); - + my ($gdb) = glob("$Bin/../staging_dir/toolchain-${arch}_*_${libc}*/bin/*-gdb"); if( defined($gdb) && -x $gdb ) { my ( $fh, $fp ) = tempfile(); @@ -64,7 +63,8 @@ if( opendir SD, "$Bin/../staging_dir" ) print $fh "set sysroot $sysroot\n" if $sysroot; print $fh "target remote $ARGV[0]\n"; - system($gdb, '-x', $fp, $ARGV[1]); + my $file = -f "$sysroot/$ARGV[1]" ? "$sysroot/$ARGV[1]" : $ARGV[1]; + system($gdb, '-x', $fp, $file); close($fh); unlink($fp);