Changes in directory llvm/lib/Debugger:
Debugger.cpp updated: 1.5 -> 1.6 UnixLocalInferiorProcess.cpp (r1.10) removed --- Log message: Remove UnixLocalInferiorProcess: debugging via the JIT isn't a good idea. Perhaps llvm-db will turn into a read debugger someday. --- Diffs of the changes: (+6 -0) Debugger.cpp | 6 ++++++ 1 files changed, 6 insertions(+) Index: llvm/lib/Debugger/Debugger.cpp diff -u llvm/lib/Debugger/Debugger.cpp:1.5 llvm/lib/Debugger/Debugger.cpp:1.6 --- llvm/lib/Debugger/Debugger.cpp:1.5 Mon Dec 26 04:24:15 2005 +++ llvm/lib/Debugger/Debugger.cpp Fri Mar 10 16:39:48 2006 @@ -113,6 +113,12 @@ Process = InferiorProcess::create(Program, Args, Environment); } +InferiorProcess * +InferiorProcess::create(Module *M, const std::vector<std::string> &Arguments, + const char * const *envp) { + throw"No supported binding to inferior processes (debugger not implemented)."; +} + /// killProgram - If the program is currently executing, kill off the /// process and free up any state related to the currently running program. If /// there is no program currently running, this just silently succeeds. _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits