2009-10-25 17:45:57 +00:00
|
|
|
#!/usr/bin/perl
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
use FindBin '$Bin';
|
|
|
|
use File::Temp 'tempfile';
|
|
|
|
|
|
|
|
@ARGV == 2 || do {
|
|
|
|
die "Usage: $0 <host:port> <executable>\n";
|
|
|
|
exit 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
if( opendir SD, "$Bin/../staging_dir" )
|
|
|
|
{
|
|
|
|
my ( $tid, $arch, $libc, @arches );
|
|
|
|
|
|
|
|
if( $ARGV[1] =~ m!\btarget-([^_/]+)_([^_/]+)\b! )
|
|
|
|
{
|
|
|
|
print("Using target $1 ($2)\n");
|
|
|
|
($arch, $libc) = ($1, $2);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
# Find arches
|
|
|
|
print("Choose target:\n");
|
|
|
|
|
|
|
|
while( defined( my $e = readdir SD ) )
|
|
|
|
{
|
|
|
|
if( -d "$Bin/../staging_dir/$e" && $e =~ /^target-([^_]+)_([^_]+)/ )
|
|
|
|
{
|
|
|
|
push @arches, [ $1, $2 ];
|
|
|
|
printf(" %2d) %s (%s)\n", @arches + 0, $1, $2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-18 21:10:56 +00:00
|
|
|
if( @arches > 1 )
|
|
|
|
{
|
|
|
|
# Query arch
|
|
|
|
do {
|
|
|
|
print("Target? > ");
|
|
|
|
chomp($tid = <STDIN>);
|
|
|
|
} while( !defined($tid) || $tid !~ /^\d+$/ || $tid < 1 || $tid > @arches );
|
2009-10-25 17:45:57 +00:00
|
|
|
|
2010-03-18 21:10:56 +00:00
|
|
|
($arch, $libc) = @{$arches[$tid-1]};
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
($arch, $libc) = @{$arches[0]};
|
|
|
|
}
|
2009-10-25 17:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
closedir SD;
|
|
|
|
|
|
|
|
# Find gdb
|
|
|
|
my ($gdb) = glob("$Bin/../build_dir/toolchain-${arch}_*_${libc}/gdb-*/gdb/gdb");
|
|
|
|
|
2010-03-18 21:10:56 +00:00
|
|
|
if( defined($gdb) && -x $gdb )
|
2009-10-25 17:45:57 +00:00
|
|
|
{
|
|
|
|
my ( $fh, $fp ) = tempfile();
|
|
|
|
|
2010-03-18 21:10:56 +00:00
|
|
|
# Find sysroot
|
|
|
|
my ($sysroot) = glob("$Bin/../staging_dir/target-${arch}_${libc}/root-*/");
|
2009-10-25 17:45:57 +00:00
|
|
|
|
2010-03-18 21:10:56 +00:00
|
|
|
print $fh "set sysroot $sysroot\n" if $sysroot;
|
2009-10-25 17:45:57 +00:00
|
|
|
print $fh "target remote $ARGV[0]\n";
|
|
|
|
|
|
|
|
system($gdb, '-x', $fp, $ARGV[1]);
|
|
|
|
|
|
|
|
close($fh);
|
|
|
|
unlink($fp);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
print("No gdb found! Make sure that CONFIG_GDB is set!\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
print("No staging_dir found! You need to compile at least once!\n");
|
|
|
|
exit(1);
|
|
|
|
}
|