~osomon/pyexiv2/pyexiv2-0.3

« back to all changes in this revision

Viewing changes to cross-compile.sh

  • Committer: Olivier Tilloy
  • Date: 2010-05-26 14:12:27 UTC
  • mfrom: (315.1.3 windows_build)
  • Revision ID: olivier@tilloy.net-20100526141227-sqh7bceffhvb1u4l
Update the install script and the windows build
to Python 2.6.5 and Boost 1.43.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
cd ..
73
73
 
74
74
# python
75
 
wget http://www.python.org/ftp/python/2.6.4/python-2.6.4.msi
76
 
7z x python-2.6.4.msi -opython
 
75
wget http://www.python.org/ftp/python/2.6.5/python-2.6.5.msi
 
76
7z x python-2.6.5.msi -opython
77
77
7z x python/python -opython
78
78
 
79
79
# boost-python
80
 
wget http://sourceforge.net/projects/boost/files/boost/1.42.0/boost_1_42_0.tar.bz2/download
81
 
tar xf boost_1_42_0.tar.bz2
82
 
cd boost_1_42_0
 
80
wget http://sourceforge.net/projects/boost/files/boost/1.43.0/boost_1_43_0.tar.bz2/download
 
81
tar xf boost_1_43_0.tar.bz2
 
82
cd boost_1_43_0
83
83
echo "using gcc : : $COMPILER : <compileflags>-I$BASE/python <archiver>$ARCHIVER ;" >> tools/build/v2/user-config.jam
84
84
bjam install -j 3 --prefix=$BASE/boost --with-python toolset=gcc link=static
85
85
cd ..