Skip to content

Commit

Permalink
Get the boost build working with py35
Browse files Browse the repository at this point in the history
A better shell programmer than me could no doubt generalize this.
  • Loading branch information
greglandrum authored and rvianello committed Nov 27, 2015
1 parent 513dcc8 commit f795d83
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion boost/build.sh
Expand Up @@ -37,7 +37,12 @@ if [ $OSX_ARCH == "x86_64" -a $PY_VER == "3.4" ]; then
ln -s libpython3.4m.dylib libpython3.4.dylib ln -s libpython3.4m.dylib libpython3.4.dylib
cd $tmpd cd $tmpd
fi fi

if [ $OSX_ARCH == "x86_64" -a $PY_VER == "3.5" ]; then
tmpd=$PWD
cd $PREFIX/lib
ln -s libpython3.5m.dylib libpython3.5.dylib
cd $tmpd
fi
./b2 -q install \ ./b2 -q install \
--with-python --with-regex --with-serialization --with-thread --with-system \ --with-python --with-regex --with-serialization --with-thread --with-system \
--debug-configuration include=$PY_INC; --debug-configuration include=$PY_INC;
Expand Down

0 comments on commit f795d83

Please sign in to comment.