This website requires JavaScript.
Explore
Help
Sign In
nicolas
/
llvm-project
Watch
1
Star
0
Fork
0
You've already forked llvm-project
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
Files
8ed67139c4cbe42b5fba496b4aa790e511b9bdf5
llvm-project
/
lldb
/
scripts
/
Python
History
Jason Molenda
8ed67139c4
Forgot to include the diagnose_unwind.py script in the initialization of
...
the lldb.macosx folder. llvm-svn: 180078
2013-04-23 04:21:14 +00:00
..
interface
After discussing with Chris Lattner, we require C++11, so lets get rid of the macros and just use C++11.
2013-04-18 22:45:39 +00:00
build-swig-Python.sh
Makefile patches from Charles Davis and Daniel Malea (+ one or two tweaks).
2012-11-01 18:55:16 +00:00
edit-swig-python-wrapper-file.py
Fix remaining Python issues leftover from my previous patch.
2011-06-01 02:33:12 +00:00
finish-swig-Python-LLDB.sh
Forgot to include the diagnose_unwind.py script in the initialization of
2013-04-23 04:21:14 +00:00
modify-python-lldb.py
Make sure that the lldb globals:
2012-12-10 19:18:23 +00:00
python-extensions.swig
Fixed SBValueList to have a __str__ function like all other SB classes. Previously this was done as __repr__.
2013-04-11 22:24:25 +00:00
python-typemaps.swig
Ensuring that the swig typemaps for SBData set the size to 0 along with the pointer to NULL
2012-10-29 23:06:44 +00:00
python-wrapper.swig
Since we use C++11, we should switch over to using std::unique_ptr when C++11 is being used. To do this, we follow what we have done for shared pointers and we define a STD_UNIQUE_PTR macro that can be used and it will "do the right thing". Due to some API differences in std::unique_ptr and due to the fact that we need to be able to compile without C++11, we can't use move semantics so some code needed to change so that it can compile with either C++.
2013-04-18 18:10:51 +00:00