You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is because is compiled with all available optimizations.
If you do not mind compiler optimizations, just remove the flag --enable-optimizations in this section:
echo "Building and installing Python ... "
pushd Python-${PYTHON_VERSION}
./configure --enable-optimizations --prefix=${BOSH_INSTALL_TARGET}
make -j 4
make install
popd
And Python will compile in less than 5 minutes.
You can also play with the number of compilation jobs that make will spawn, usually should be based on the number of cores of a vm, normally 4 jobs is quite ok for a 2 cpus vm ...
The text was updated successfully, but these errors were encountered:
This is because is compiled with all available optimizations.
If you do not mind compiler optimizations, just remove the flag
--enable-optimizations
in this section:And Python will compile in less than 5 minutes.
You can also play with the number of compilation jobs that make will spawn, usually should be based on the number of cores of a vm, normally 4 jobs is quite ok for a 2 cpus vm ...
The text was updated successfully, but these errors were encountered: