<div dir="ltr"><div class="gmail_extra">On Sat, Jul 6, 2013 at 5:24 AM, Sylvestre Ledru <span dir="ltr"><<a href="mailto:sylvestre@debian.org" target="_blank">sylvestre@debian.org</a>></span> wrote:<br><div class="gmail_quote">

<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div id=":ux" style="overflow:hidden">Sure. I could backport it for the distributions I am supporting on<br>


<a href="http://llvm.org/apt/" target="_blank">llvm.org/apt/</a>.<br>
<br>
However, before doing so, I would just like to hear back from the<br>
current libedit maintainer (to avoid duplicating the work on the package).</div></blockquote></div><br>In case anyone else is running into prompt issues on Linux, we took libedit 3.1, compiled it, shoved it in lldb/extern/libedit/libedit-3.1 and made the changes below to our working lldb source tree. ( <a href="https://bitbucket.org/mikesart/lldb_branch">https://bitbucket.org/mikesart/lldb_branch</a> ) This is allowing us to get around these issues until a more official solution is worked out.</div>

<div class="gmail_extra"> -Mike</div><div class="gmail_extra"><br></div><div class="gmail_extra"><div class="gmail_extra">source/CMakeLists.txt</div><div class="gmail_extra"><br></div><div class="gmail_extra"><div class="gmail_extra">

if ( CMAKE_SYSTEM_NAME MATCHES "Linux" )</div><div class="gmail_extra">set( LLDB_SYSTEM_LIBS</div><div class="gmail_extra">  ${LLDB_SOURCE_DIR}/extern/libedit/libedit-3.1/lib/libedit.a</div><div class="gmail_extra">

  tinfo</div><div class="gmail_extra">  python2.7</div><div class="gmail_extra">  )</div><div class="gmail_extra">else()</div><div class="gmail_extra">set( LLDB_SYSTEM_LIBS</div><div class="gmail_extra">  edit</div><div class="gmail_extra">

  python2.7</div><div class="gmail_extra">  )</div><div class="gmail_extra">endif()</div></div><div class="gmail_extra"><br></div><div class="gmail_extra">tools/driver/CMakeLists.txt</div><div class="gmail_extra"><br></div>

<div class="gmail_extra"><div class="gmail_extra">if ( CMAKE_SYSTEM_NAME MATCHES "Linux" )</div><div class="gmail_extra">include_directories("../../extern/libedit/libedit-3.1/include")</div><div class="gmail_extra">

endif()</div></div></div></div>