Skip to content

Commit

Permalink
Filter the future all-of-llvm shared library out of the llvm-config
Browse files Browse the repository at this point in the history
results.  I'm checking this in before the shared library so that I can
tell if it breaks anything on its own.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97089 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
jyasskin committed Feb 25, 2010
1 parent f0bd4cc commit b05942c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions utils/GenLibDeps.pl
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@
my @files = readdir DIR;
closedir DIR;
my @libs = grep(/libLLVM.*\.(dylib|so|a)$/,sort(@files));
# Omit the all-of-llvm shared library.
@libs = grep(!/libLLVM-\d\.\d(svn)?\.(dylib|so)/, @libs);
my @objs = grep(/LLVM.*\.o$/,sort(@files));

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

0 comments on commit b05942c

Please sign in to comment.