Sip: Difference between revisions

From CBLFS
Jump to navigationJump to search
No edit summary
 
Line 40: Line 40:
Compile the package:
Compile the package:


sed -i "s:/lib:&32:g" 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 51: Line 52:
Compile the package:
Compile the package:


sed -i "s:/lib:&64:g" configure.py &&
  USE_ARCH=64 python 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)'

Revision as of 14:03, 2 November 2006

Download Source: http://www.riverbankcomputing.com/Downloads/sip4/sip-4.4.5.tar.gz

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 "s:/lib:&32:g" 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 "s:/lib:&64:g" configure.py &&
USE_ARCH=64 python configure.py &&
make CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" LINK='$(CXX)'

Install the package

make install
Retrieved from "?title=Sip&oldid=3603"