|
@@ -113,13 +113,13 @@ $P =~ s@.*/@@g;
|
|
|
|
|
|
my $V = '0.1';
|
|
|
|
|
|
-if ($#ARGV != 10) {
|
|
|
- print "usage: $P arch bits objdump objcopy cc ld nm rm mv is_module inputfile\n";
|
|
|
+if ($#ARGV != 11) {
|
|
|
+ print "usage: $P arch endian bits objdump objcopy cc ld nm rm mv is_module inputfile\n";
|
|
|
print "version: $V\n";
|
|
|
exit(1);
|
|
|
}
|
|
|
|
|
|
-my ($arch, $bits, $objdump, $objcopy, $cc,
|
|
|
+my ($arch, $endian, $bits, $objdump, $objcopy, $cc,
|
|
|
$ld, $nm, $rm, $mv, $is_module, $inputfile) = @ARGV;
|
|
|
|
|
|
# This file refers to mcount and shouldn't be ftraced, so lets' ignore it
|