Changes between Version 10 and Version 11 of Python_SIP/Build_Install
- Timestamp:
- Jul 24, 2008 1:11:06 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Python_SIP/Build_Install
v10 v11 15 15 ==== Requirements ==== 16 16 17 1. The [http://www.pjsip.org/using.htm#gnu_req usual requirements to build PJSIP], e.g. {{{make}}}, {{{gcc}}}, and {{{binutils}}}. 17 18 1. '''Python''': this normally should have been installed on every Linux. 18 19 1. '''Python development package''', to build the C extension. This might be called {{{python-devel}}} (e.g. on Fedora) or {{{python2.4-dev}}} or {{{python2.5-dev}}} (e.g. on Ubuntu). … … 35 36 }}} 36 37 37 === Microsoft Windows ===38 === Microsoft Windows with Visual Studio === 38 39 39 40 ==== Requirements ==== 40 41 42 1. The usual [http://www.pjsip.org/using.htm#vs_req PJSIP requirements for Windows], e.g. Visual Studio along with Platform SDK and DirectX SDK. 41 43 1. '''Python SDK''': I personally use [ftp://ftp.activestate.com/ActivePython/windows/2.4/ ActivePython-2.4.3-12] distribution from [http://www.activestate.com ActiveState], since it has a matching debug package. 42 1. '''Visual Studio''': for building the C extension.43 44 1. '''Optional: debug package''': the debug package is useful if you want to debug the C extension. You can download it from ftp://ftp.activestate.com/ActivePython/etc/ 44 45 45 ==== Building the Module with Visual Studio====46 ==== Building the Modules ==== 46 47 47 48 '''Step 1: Building the C Extension''': … … 64 65 }}} 65 66 66 === = Building the Module with MinGW ====67 === Microsoft Windows with MinGW === 67 68 68 Adamczak Krzysztof suggested this on PJSIP mailing list to build the extensions with MinGW:69 I did not try this myself since I use Visual Studio, but Adamczak Krzysztof suggested this on PJSIP mailing list to build the extensions with MinGW: 69 70 70 71 {{{ 71 72 python setup.py build_ext --compiler=mingw32 install 72 73 }}} 74 73 75 74 76