Difference between revisions of "Sip"
From CBLFS
Jump to navigationJump to search (→64Bit) |
Weibullguy (talk | contribs) |
||
(4 intermediate revisions by 3 users not shown) | |||
Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
− | | http://www.riverbankcomputing.com/Downloads/ | + | | http://www.riverbankcomputing.com/static/Downloads/sip4/sip-{{Sip-Version}}.tar.gz |
|} | |} | ||
---- | ---- | ||
− | {{ | + | {{Package-Introduction|SIP is an extension module generator similar to SWIG but is specifically designed for creating Python modules.|http://www.riverbankcomputing.com/software/sip/intro}} |
== Dependencies == | == Dependencies == | ||
Line 42: | Line 42: | ||
Compile the package: | Compile the package: | ||
− | sed -i | + | sed -i '/lib_dir/s:"lib":"lib32":' configure.py && |
USE_ARCH=n32 python configure.py && | USE_ARCH=n32 python configure.py && | ||
make CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" LINK='$(CXX)' | make CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" LINK='$(CXX)' | ||
Line 54: | Line 54: | ||
Compile the package: | Compile the package: | ||
− | + | sed -i '/lib_dir/s:"lib":"lib64":' configure.py && | |
− | + | USE_ARCH=64 python configure.py && | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
make CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" LINK='$(CXX)' | make CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" LINK='$(CXX)' | ||
Line 81: | Line 75: | ||
|/usr/lib/python{{Python-Version2}}/site-packages/sip.so | |/usr/lib/python{{Python-Version2}}/site-packages/sip.so | ||
|} | |} | ||
+ | |||
+ | [[Category:Python Modules]] |
Latest revision as of 09:34, 19 October 2010
Download Source: | http://www.riverbankcomputing.com/static/Downloads/sip4/sip-4.10.tar.gz |
---|
Contents
Introduction to Sip
SIP is an extension module generator similar to SWIG but is specifically designed for creating Python modules.
Project Homepage: http://www.riverbankcomputing.com/software/sip/intro
Dependencies
Required
Non-Multilib
Compile the package:
python configure.py && make
Install the package
make install
Multilib
32Bit
Compile the package:
USE_ARCH=32 python configure.py && make CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" LINK='$(CXX)'
Install the package
make install
N32
Compile the package:
sed -i '/lib_dir/s:"lib":"lib32":' configure.py && USE_ARCH=n32 python configure.py && make CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" LINK='$(CXX)'
Install the package
make install
64Bit
Compile the package:
sed -i '/lib_dir/s:"lib":"lib64":' configure.py && USE_ARCH=64 python configure.py && make CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" LINK='$(CXX)'
Install the package
make install
Contents
Installed Directories: | None |
---|---|
Installed Programs: | sip |
Installed Libraries: | /usr/lib/python2.7/site-packages/sip.so |