aboutsummaryrefslogtreecommitdiff
path: root/lldb/scripts/Python/buildSwigPython.py
AgeCommit message (Collapse)AuthorFilesLines
2014-09-06Expose ThreadCollection in SB APIKuba Brecka1-0/+2
Reviewed at http://reviews.llvm.org/D5218 and http://lists.cs.uiuc.edu/pipermail/lldb-commits/Week-of-Mon-20140901/012828.html llvm-svn: 217296
2014-08-02Make the swig generation script use the correct python executable.Zachary Turner1-1/+2
It was hardcoding the value "python", which will end up at best getting a different python executable (if the user has overridden the value of PYTHON_EXECUTABLE), and at worst encountering an error (if there is no copy of python on the system path). This patch changes the script to use sys.executable so that it runs the sub-script with the same executable that it was run with. llvm-svn: 214618
2014-07-01This creates a valid Python API for Windows, pending some issues. The ↵Deepak Panickal1-0/+782
changes included are - - Ported the SWIG wrapper shell scripts to Python so that they would work on Windows too along with other platforms - Updated CMake handling to fix SWIG errors and manage sym-linking on Windows to liblldb.dll - More build fixes for Windows The pending issues are that two Python modules, termios and pexpect are not available on Windows. These are currently required for the Python command interpreter to be used from within LLDB. llvm-svn: 212111