Link to archive versions of libraries instead of the relinked ones

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23925 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-10-24 01:05:53 +00:00
parent 4fb1b21b31
commit 831843d5d1
2 changed files with 6 additions and 4 deletions

View File

@ -10,11 +10,11 @@ LEVEL = ../..
TOOLNAME = bugpoint
OPTLIBS = LLVMTransforms LLVMInstrumentation LLVMProfilePaths
ANALIBS = LLVMDataStructure LLVMipa LLVMTarget.a
OPTLIBS = LLVMTransforms.a LLVMInstrumentation.a LLVMProfilePaths
ANALIBS = LLVMDataStructure LLVMipa.a LLVMTarget.a
USEDLIBS = LLVMipo LLVMScalarOpts LLVMAnalysis $(OPTLIBS) $(ANALIBS) \
LLVMTransformUtils \
USEDLIBS = LLVMipo.a LLVMScalarOpts.a $(OPTLIBS) $(ANALIBS) LLVMAnalysis.a \
LLVMTransformUtils.a \
LLVMAsmParser LLVMLinker.a LLVMBCReader LLVMBCWriter \
LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a

View File

@ -14,6 +14,8 @@
//===----------------------------------------------------------------------===//
#include "BugDriver.h"
#include "llvm/Analysis/LinkAllAnalyses.h"
#include "llvm/Transforms/LinkAllPasses.h"
#include "llvm/Support/PassNameParser.h"
#include "llvm/Support/ToolRunner.h"
#include "llvm/Support/CommandLine.h"