turn off unsafe to speed up Python for moment

This commit is contained in:
Jay Lee
2019-07-26 15:23:58 -04:00
parent 2fef5e2cfa
commit 438fd5b59a

View File

@@ -57,7 +57,7 @@ else
safe_flags="--with-openssl=$mypath/ssl --enable-shared --prefix=$mypath/python --with-ensurepip=upgrade"
unsafe_flags="--enable-optimizations --with-lto"
if [ ! -e Makefile ]; then
./configure $safe_flags $unsafe_flags > /dev/null
./configure $safe_flags # $unsafe_flags > /dev/null
fi
make -j$cpucount -s
RESULT=$?