mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
27 lines
505 B
Perl
Executable File
27 lines
505 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use Cwd;
|
|
|
|
$curdir = cwd();
|
|
|
|
open( LOG, ">ctor-dtor-report" ) || print "can't open $?\n";
|
|
|
|
@path_fields = split(/\//,$curdir);
|
|
|
|
pop(@path_fields);
|
|
pop(@path_fields);
|
|
|
|
$path = join ("/",@path_fields);
|
|
|
|
open (REPORT, "find $path -name \"*.o\" -print | xargs nm -Bno | egrep \"_GLOBAL_\.[ID]\" 2>&1 |" ) || die "open: $! \n";
|
|
|
|
while (<REPORT>) {
|
|
print $_;
|
|
print LOG $_;
|
|
}
|
|
close(REPORT);
|
|
|
|
if (-s "./ctor-dtor-report" > 0) {
|
|
print "Global Constructors\/Destructors Found" . "\n";
|
|
}
|