Skip to content

Commit

Permalink
Tell GenLibDeps.pl to inspect .so and .dylib shared files.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59158 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Oscar Fuentes committed Nov 12, 2008
1 parent 7e298ed commit e40db4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/GenLibDeps.pl
Original file line number Diff line number Diff line change
@@ -48,7 +48,7 @@
opendir DIR,$Directory;
my @files = readdir DIR;
closedir DIR;
my @libs = grep(/libLLVM.*\.a$/,sort(@files));
my @libs = grep(/libLLVM.*\.(dylib|so|a)$/,sort(@files));
my @objs = grep(/LLVM.*\.o$/,sort(@files));

# Declare the hashes we will use to keep track of the library and object file

0 comments on commit e40db4a

Please sign in to comment.