[llvm-commits] CVS: llvm/tools/bugpoint/Makefile bugpoint.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sun Oct 23 18:06:04 PDT 2005
Changes in directory llvm/tools/bugpoint:
Makefile updated: 1.12 -> 1.13
bugpoint.cpp updated: 1.25 -> 1.26
---
Log message:
Link to archive versions of libraries instead of the relinked ones
---
Diffs of the changes: (+6 -4)
Makefile | 8 ++++----
bugpoint.cpp | 2 ++
2 files changed, 6 insertions(+), 4 deletions(-)
Index: llvm/tools/bugpoint/Makefile
diff -u llvm/tools/bugpoint/Makefile:1.12 llvm/tools/bugpoint/Makefile:1.13
--- llvm/tools/bugpoint/Makefile:1.12 Fri Apr 22 12:14:14 2005
+++ llvm/tools/bugpoint/Makefile Sun Oct 23 20:05:53 2005
@@ -10,11 +10,11 @@
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
Index: llvm/tools/bugpoint/bugpoint.cpp
diff -u llvm/tools/bugpoint/bugpoint.cpp:1.25 llvm/tools/bugpoint/bugpoint.cpp:1.26
--- llvm/tools/bugpoint/bugpoint.cpp:1.25 Mon Aug 1 21:16:17 2005
+++ llvm/tools/bugpoint/bugpoint.cpp Sun Oct 23 20:05:53 2005
@@ -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"
More information about the llvm-commits
mailing list