summaryrefslogtreecommitdiff
path: root/tools/llvm-config/llvm-config.in.in
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-06-02 00:56:15 +0000
committerChris Lattner <sabre@nondot.org>2006-06-02 00:56:15 +0000
commit06e752e7686a3575b109069306bd6680572bcc4d (patch)
tree7d4ddfd294d0cee39d09be90ab83fd16502a9925 /tools/llvm-config/llvm-config.in.in
parent76c8710697c1d3dae98f97ef646610f96b830ea5 (diff)
downloadllvm-06e752e7686a3575b109069306bd6680572bcc4d.tar.gz
llvm-06e752e7686a3575b109069306bd6680572bcc4d.tar.bz2
llvm-06e752e7686a3575b109069306bd6680572bcc4d.tar.xz
Remove more "alpha is archive" stuff.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28652 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-config/llvm-config.in.in')
-rw-r--r--tools/llvm-config/llvm-config.in.in17
1 files changed, 2 insertions, 15 deletions
diff --git a/tools/llvm-config/llvm-config.in.in b/tools/llvm-config/llvm-config.in.in
index 89efde40e2..e84572784a 100644
--- a/tools/llvm-config/llvm-config.in.in
+++ b/tools/llvm-config/llvm-config.in.in
@@ -169,7 +169,6 @@ sub find_best_engine;
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 @@ sub expand_dependecies (@) {
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 @@ sub topologically_sort_sets (@) {
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__