<div dir="ltr">Are you using MSBuild or Ninja to build (i.e. are you clicking the Build Solution button in Visual Studio or running ninja from command line)?  I don't know where it puts this stuff with a VS2013 build, but with a ninja build, your directory will be organized like this:<div><br></div><div>build</div><div>|___bin</div><div>     |___lldb.exe</div><div>     |___liblldb.dll</div><div>|___lib</div><div>     |___site-packages</div><div>           |___lldb</div><div>                 |___lldb_d.pyd   // If this is a debug build, lldb.pyd if release</div><div><br></div><div>I'm betting you're missing the pyd file.  Can you confirm? Then we can diagnose that if it turns out to be the problem.</div></div><br><div class="gmail_quote"><div dir="ltr">On Mon, Oct 5, 2015 at 5:20 AM kwadwo amankwa via lldb-dev <<a href="mailto:lldb-dev@lists.llvm.org">lldb-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi guys,<br>
<br>
Can someone point me in the right direction on this . I have managed to<br>
set up my environment on windows , compiling python2.7.10 using VS2013<br>
and building llvm/lldb in VS2013. lldb and all its libraries build<br>
successfully so its just when I import lldb into my python project I get<br>
this error.<br>
<br>
File "<string>", line 1, in <module><br>
Import error: No module named embedded_interpreter<br>
<br>
  Also when I use the 'script' command in the lldb interpreter , lldb<br>
completely crashes  with an unhandled exception in the  python<br>
file_write  function (fileobject.c:1852)<br>
<br>
n2 = fwrite(s, 1, n, f->f_fp);<br>
<br>
the call to fwrite causes an access violation  . My intuition tells me<br>
that i'm missing  a lib or something but I can't put my finger on it.<br>
Please Help !<br>
<br>
<br>
_______________________________________________<br>
lldb-dev mailing list<br>
<a href="mailto:lldb-dev@lists.llvm.org" target="_blank">lldb-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev</a><br>
</blockquote></div>