[llvm-commits] CVS: llvm/tools/llvm-config/llvm-config.in.in

Chris Lattner lattner at cs.uiuc.edu
Thu Jun 1 17:56:27 PDT 2006



Changes in directory llvm/tools/llvm-config:

llvm-config.in.in updated: 1.5 -> 1.6
---
Log message:

Remove more "alpha is archive" stuff.


---
Diffs of the changes:  (+2 -15)

 llvm-config.in.in |   17 ++---------------
 1 files changed, 2 insertions(+), 15 deletions(-)


Index: llvm/tools/llvm-config/llvm-config.in.in
diff -u llvm/tools/llvm-config/llvm-config.in.in:1.5 llvm/tools/llvm-config/llvm-config.in.in:1.6
--- llvm/tools/llvm-config/llvm-config.in.in:1.5	Thu Jun  1 19:30:31 2006
+++ llvm/tools/llvm-config/llvm-config.in.in	Thu Jun  1 19:56:15 2006
@@ -169,7 +169,6 @@
 sub expand_names (@);
 sub find_all_required_sets (@);
 sub find_all_required_sets_helper ($$@);
-sub maybe_fix_core (@);
 
 # Each "set" contains one or more libraries which must be included as a
 # group (due to cyclic dependencies).  Sets are represented as a Perl array
@@ -192,11 +191,10 @@
     my @required_sets = find_all_required_sets(expand_names(@libs));
     my @sorted_sets = topologically_sort_sets(@required_sets);
 
-    # Expand the library sets into libraries, and apply any
-    # platform-specific hackery.
+    # Expand the library sets into libraries.
     my @result;
     foreach my $set (@sorted_sets) { push @result, @{$set}; }
-    return maybe_fix_core(@result);
+    return @result;
 }
 
 # Load in the raw dependency data stored at the end of this file.
@@ -352,17 +350,6 @@
     return reverse(@result);
 }
 
-# Nasty hack to work around the fact that LLVMCore changes file type on
-# certain platforms.
-sub maybe_fix_core (@) {
-    my @libs = @_;
-    my @result;
-    foreach my $lib (@libs) {
-        push @result, $lib;
-    }
-    return @result;
-}
-
 # Our library dependency data will be added after the '__END__' token, and will
 # be read through the magic <DATA> filehandle.
 __END__






More information about the llvm-commits mailing list