[llvm-commits] [llvm] r73228 - /llvm/trunk/utils/GenLibDeps.pl
Duncan Sands
baldrick at free.fr
Fri Jun 12 07:23:49 PDT 2009
Author: baldrick
Date: Fri Jun 12 09:23:42 2009
New Revision: 73228
URL: http://llvm.org/viewvc/llvm-project?rev=73228&view=rev
Log:
Tweak GenLibDeps.pl so it works on solaris.
Patch by Edward O'Callaghan.
Modified:
llvm/trunk/utils/GenLibDeps.pl
Modified: llvm/trunk/utils/GenLibDeps.pl
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/GenLibDeps.pl?rev=73228&r1=73227&r2=73228&view=diff
==============================================================================
--- llvm/trunk/utils/GenLibDeps.pl (original)
+++ llvm/trunk/utils/GenLibDeps.pl Fri Jun 12 09:23:42 2009
@@ -38,6 +38,10 @@
die "Can't find 'dot'" if (! -x "$DotPath");
}
+if (defined($ENV{NM})) {
+ chomp($nmPath=$ENV{NM});
+}
+
if (!defined($nmPath) || $nmPath eq "") {
chomp($nmPath=`which nm`);
die "Can't find 'nm'" if (! -x "$nmPath");
@@ -96,7 +100,7 @@
print " <dt><b>$lib</b</dt><dd><ul>\n";
}
open UNDEFS,
- "$nmPath -g -u $Directory/$lib | sed -e 's/^[ 0]* U //' | sort | uniq |";
+ "$nmPath -u $Directory/$lib | sed -e 's/^[ 0]* U //' | sort | uniq |";
my %DepLibs;
while (<UNDEFS>) {
chomp;
@@ -116,7 +120,7 @@
close UNDEFS or die "nm failed";
unless(keys %DepLibs) {
# above failed
- open UNDEFS, "$nmPath -g -u $Directory/$lib |";
+ open UNDEFS, "$nmPath -u $Directory/$lib |";
while (<UNDEFS>) {
# to bypass non-working sed
if (' ' eq substr($_,0,2) and index($_,'U ')) {
More information about the llvm-commits
mailing list