[Lldb-commits] [lldb] r158203 - /lldb/branches/apple/python-GIL/scripts/Python/build-swig-Python.sh

Filipe Cabecinhas me at filcab.net
Fri Jun 8 08:17:39 PDT 2012


Author: filcab
Date: Fri Jun  8 10:17:39 2012
New Revision: 158203

URL: http://llvm.org/viewvc/llvm-project?rev=158203&view=rev
Log:
Build SWIG bindings with threading support.

Modified:
    lldb/branches/apple/python-GIL/scripts/Python/build-swig-Python.sh

Modified: lldb/branches/apple/python-GIL/scripts/Python/build-swig-Python.sh
URL: http://llvm.org/viewvc/llvm-project/lldb/branches/apple/python-GIL/scripts/Python/build-swig-Python.sh?rev=158203&r1=158202&r2=158203&view=diff
==============================================================================
--- lldb/branches/apple/python-GIL/scripts/Python/build-swig-Python.sh (original)
+++ lldb/branches/apple/python-GIL/scripts/Python/build-swig-Python.sh Fri Jun  8 10:17:39 2012
@@ -289,7 +289,7 @@
 
 # Build the SWIG C++ wrapper file for Python.
 
-$SWIG -c++ -shadow -python -I"/usr/include" -I"${SRC_ROOT}/include" -I./. -outdir "${CONFIG_BUILD_DIR}" -o "${swig_output_file}" "${swig_input_file}"
+$SWIG -c++ -shadow -python -threads -I"/usr/include" -I"${SRC_ROOT}/include" -I./. -outdir "${CONFIG_BUILD_DIR}" -o "${swig_output_file}" "${swig_input_file}"
 
 # Implement the iterator protocol and/or eq/ne operators for some lldb objects.
 # Append global variable to lldb Python module.





More information about the lldb-commits mailing list