Browse Source

Merge branch 'boost_python3' of https://github.com/Eyepea/FrameworkBenchmarks into Eyepea-boost_python3

Hamilton Turner 10 years ago
parent
commit
44200d9e40
1 changed files with 1 additions and 1 deletions
  1. 1 1
      toolset/setup/linux/languages/python3.sh

+ 1 - 1
toolset/setup/linux/languages/python3.sh

@@ -6,7 +6,7 @@ RETCODE=$(fw_exists ${IROOT}/py3.installed)
 fw_get http://www.python.org/ftp/python/3.4.2/Python-3.4.2.tar.xz
 fw_untar Python-3.4.2.tar.xz
 cd Python-3.4.2
-./configure --prefix=${IROOT}/py3 --disable-shared --quiet
+./configure --prefix=${IROOT}/py3 --disable-shared --with-computed-gotos --quiet
 make -j4 --quiet 2>&1 | tee $IROOT/python3-install.log | awk '{ if (NR%100 == 0) printf "."}'
 make install --quiet 2>&1 | tee -a $IROOT/python3-install.log | awk '{ if (NR%100 == 0) printf "."}'
 cd ..