summaryrefslogtreecommitdiff
path: root/release.sh
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@googlemail.com>2011-07-20 22:43:49 +0200
committerRalf Gommers <ralf.gommers@googlemail.com>2011-07-20 22:46:15 +0200
commite2af7b755746a7269df247418ee383f1eb39c0bc (patch)
treed96bd5b6735fe075768dd127c8bd8792c111b845 /release.sh
parent6dcc6e45ac8c5e4fd0beb047364b8341a5c6b3c1 (diff)
downloadnumpy-e2af7b755746a7269df247418ee383f1eb39c0bc.tar.gz
REL: forward port changes to release scripts from 1.6.x branch.
Diffstat (limited to 'release.sh')
-rw-r--r--release.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/release.sh b/release.sh
index bb5a375db..5f1f31ebb 100644
--- a/release.sh
+++ b/release.sh
@@ -5,6 +5,17 @@
# downloads, i.e. two versions for Python 2.7. The Intel 32/64-bit version is
# for OS X 10.6+, the other dmg installers are for 10.3+ and are built on 10.5
+# Check we're using the correct g++/c++ for the 32-bit 2.6 version we build for
+# the docs and the 64-bit 2.7 dmg installer.
+# We do this because for Python 2.6 we use a symlink on the PATH to select
+# /usr/bin/g++-4.0, while for Python 2.7 we need the default 4.2 version.
+export PATH=~/Code/tmp/gpp40temp/:$PATH
+gpp="$(g++ --version | grep "4.0")"
+if [ -z "$gpp" ]; then
+ echo "Wrong g++ version, we need 4.0 to compile scipy with Python 2.6"
+ exit 1
+fi
+
# bootstrap needed to ensure we build the docs from the right scipy version
paver bootstrap
source bootstrap/bin/activate
@@ -19,6 +30,14 @@ paver pdf
paver sdist
export MACOSX_DEPLOYMENT_TARGET=10.6
+# Use GCC 4.2 for 64-bit OS X installer for Python 2.7
+export PATH=~/Code/tmp/gpp42temp/:$PATH
+gpp="$(g++ --version | grep "4.2")"
+if [ -z "$gpp" ]; then
+ echo "Wrong g++ version, we need 4.2 for 64-bit binary for Python 2.7"
+ exit 1
+fi
+
paver dmg -p 2.7 # 32/64-bit version
paver bdist_superpack -p 3.2