You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-embedded/libdisasm/files/libdisasm-0.23-user-AS-OBJD...

16 lines
460 B

--- a/test/asmdisasm.pl
+++ b/test/asmdisasm.pl
@@ -22,10 +22,10 @@
# uninitialized stuff
my ($line, $output);
-system "as --32 -o $obj_file $asm_file";
+system "$ENV{AS} --32 -o $obj_file $asm_file";
exit(1) if ($? != 0);
-$output = (grep(/\.text/,`objdump -h $obj_file`))[0];
+$output = (grep(/\.text/,`$ENV{OBJDUMP} -h $obj_file`))[0];
$output =~ s/^\s+//g;
my ($idx,$name,$size,$vma,$lma,$offset,$align)=split(/\s+/,$output);
$size = hex($size);