From bba6224042603fe4d52821c4c1918cb8ce00ec32 Mon Sep 17 00:00:00 2001 From: minqiyang Date: Thu, 22 Nov 2018 01:26:50 +0800 Subject: [PATCH] Add doc comments test=develop --- tools/manylinux1/build_scripts/build_utils.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/manylinux1/build_scripts/build_utils.sh b/tools/manylinux1/build_scripts/build_utils.sh index c1647ce244..d97745ad2d 100755 --- a/tools/manylinux1/build_scripts/build_utils.sh +++ b/tools/manylinux1/build_scripts/build_utils.sh @@ -53,6 +53,8 @@ function do_cpython_build { # NOTE --enable-shared for generating libpython shared library needed for # linking of some of the nupic.core test executables. if [ $(lex_pyver $py_ver) -ge $(lex_pyver 3.7) ]; then + # NOTE python 3.7 should be installed via make altinstall rather than + # make install, and we should specify the location of ssl CFLAGS="-Wformat" ./configure --prefix=${prefix} --with-openssl=/usr/local/ssl --enable-shared $unicode_flags > /dev/null make -j8 > /dev/null make altinstall > /dev/null -- GitLab