2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00

Tone down gcc opt to try and avoid bad behavior.

This commit is contained in:
Rene Rivera
2018-11-12 15:45:07 -06:00
parent 5096d943c0
commit 614cddb867

View File

@@ -184,14 +184,14 @@ case $BOOST_JAM_TOOLSET in
export PATH=${BOOST_JAM_TOOLSET_ROOT}bin:$PATH
fi
BOOST_JAM_CXX="gcc -x c++ -DNT"
BOOST_RELEASE="-O3 -s"
BOOST_RELEASE="-O2 -s"
BOOST_DEBUG="-O0 -g"
BOOST_JAM_OS="NT"
;;
*)
BOOST_JAM_CXX="gcc -x c++ -std=c++11"
BOOST_RELEASE="-O3 -s"
BOOST_RELEASE="-O2 -s"
BOOST_DEBUG="-O0 -g"
BOOST_PYTHON="`python-config --includes --libs` -DHAVE_PYTHON -Wno-deprecated-register"
esac