[Lldb-commits] [PATCH] D13268: Simple readline functionality for interactive python on linux.
Todd Fiala via lldb-commits
lldb-commits at lists.llvm.org
Sat Oct 3 11:51:34 PDT 2015
tfiala added a comment.
You'll need to guard against exclusion of libedit:
#ifndef LLDB_DISABLE_LIBEDIT
...
#endif
We can't exclude this whole file if libedit is disabled, because if we don't have libedit, we still need this null stub in on Linux. (i.e. the existing behavior needs to be present if no libedit).
Repository:
rL LLVM
http://reviews.llvm.org/D13268
More information about the lldb-commits
mailing list