[llvm-commits] [llvm] r83288 - in /llvm/trunk: CMakeLists.txt include/llvm/Debugger/ lib/Debugger/ lib/Makefile tools/CMakeLists.txt tools/Makefile tools/llvm-db/
Chris Lattner
sabre at nondot.org
Sun Oct 4 19:29:51 PDT 2009
Author: lattner
Date: Sun Oct 4 21:29:51 2009
New Revision: 83288
URL: http://llvm.org/viewvc/llvm-project?rev=83288&view=rev
Log:
remove llvm-db: it is completely broken and if anyone wants to do a debugger,
they should not base it on llvm-db (which not following almost any "best practices").
Removed:
llvm/trunk/include/llvm/Debugger/
llvm/trunk/lib/Debugger/
llvm/trunk/tools/llvm-db/
Modified:
llvm/trunk/CMakeLists.txt
llvm/trunk/lib/Makefile
llvm/trunk/tools/CMakeLists.txt
llvm/trunk/tools/Makefile
Modified: llvm/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/CMakeLists.txt?rev=83288&r1=83287&r2=83288&view=diff
==============================================================================
--- llvm/trunk/CMakeLists.txt (original)
+++ llvm/trunk/CMakeLists.txt Sun Oct 4 21:29:51 2009
@@ -301,7 +301,6 @@
add_subdirectory(lib/ExecutionEngine/JIT)
add_subdirectory(lib/Target)
add_subdirectory(lib/AsmParser)
-add_subdirectory(lib/Debugger)
add_subdirectory(lib/Archive)
add_subdirectory(projects)
Modified: llvm/trunk/lib/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Makefile?rev=83288&r1=83287&r2=83288&view=diff
==============================================================================
--- llvm/trunk/lib/Makefile (original)
+++ llvm/trunk/lib/Makefile Sun Oct 4 21:29:51 2009
@@ -11,7 +11,7 @@
include $(LEVEL)/Makefile.config
PARALLEL_DIRS := VMCore AsmParser Bitcode Archive Analysis Transforms CodeGen \
- Target ExecutionEngine Debugger Linker MC CompilerDriver
+ Target ExecutionEngine Linker MC CompilerDriver
include $(LEVEL)/Makefile.common
Modified: llvm/trunk/tools/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/CMakeLists.txt?rev=83288&r1=83287&r2=83288&view=diff
==============================================================================
--- llvm/trunk/tools/CMakeLists.txt (original)
+++ llvm/trunk/tools/CMakeLists.txt Sun Oct 4 21:29:51 2009
@@ -27,7 +27,6 @@
add_subdirectory(lli)
add_subdirectory(llvm-extract)
-add_subdirectory(llvm-db)
add_subdirectory(bugpoint)
add_subdirectory(llvm-bcanalyzer)
Modified: llvm/trunk/tools/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/Makefile?rev=83288&r1=83287&r2=83288&view=diff
==============================================================================
--- llvm/trunk/tools/Makefile (original)
+++ llvm/trunk/tools/Makefile Sun Oct 4 21:29:51 2009
@@ -19,7 +19,7 @@
PARALLEL_DIRS := opt llvm-as llvm-dis \
llc llvm-ranlib llvm-ar llvm-nm \
llvm-ld llvm-prof llvm-link \
- lli llvm-extract llvm-db \
+ lli llvm-extract \
bugpoint llvm-bcanalyzer llvm-stub \
llvm-mc llvmc
More information about the llvm-commits
mailing list