diff options
| author | Chris Lattner <sabre@nondot.org> | 2005-10-24 01:05:53 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2005-10-24 01:05:53 +0000 |
| commit | 652ce549ece312eb54f7a45668af51773c0eac8b (patch) | |
| tree | c75b1380c33baf0f28f147a25b793ccc268bba45 | |
| parent | ca014adf8ee758aea755a17786a85d3a29d963ce (diff) | |
| download | bcm5719-llvm-652ce549ece312eb54f7a45668af51773c0eac8b.tar.gz bcm5719-llvm-652ce549ece312eb54f7a45668af51773c0eac8b.zip | |
Link to archive versions of libraries instead of the relinked ones
llvm-svn: 23925
| -rw-r--r-- | llvm/tools/bugpoint/Makefile | 8 | ||||
| -rw-r--r-- | llvm/tools/bugpoint/bugpoint.cpp | 2 |
2 files changed, 6 insertions, 4 deletions
diff --git a/llvm/tools/bugpoint/Makefile b/llvm/tools/bugpoint/Makefile index e5eacd0cb1b..fdb587ccea2 100644 --- a/llvm/tools/bugpoint/Makefile +++ b/llvm/tools/bugpoint/Makefile @@ -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 diff --git a/llvm/tools/bugpoint/bugpoint.cpp b/llvm/tools/bugpoint/bugpoint.cpp index a4442c7ef97..0f25cf8a506 100644 --- a/llvm/tools/bugpoint/bugpoint.cpp +++ b/llvm/tools/bugpoint/bugpoint.cpp @@ -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" |

