File tree 1 file changed +0
-4
lines changed 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -120,8 +120,6 @@ before_install:
120
120
$PYPY_BINARY -m pip install pytest
121
121
elif [ -n "$DOCKER" ]; then
122
122
docker pull $DOCKER
123
- # Disable LTO with gcc until gcc 79296 is fixed:
124
- if [ -n "$GCC" ]; then export CMAKE_EXTRA_ARGS="${CMAKE_EXTRA_ARGS} -DPYBIND11_LTO_CXX_FLAGS="; fi
125
123
126
124
export containerid=$(docker run --detach --tty \
127
125
--volume="$PWD":/pybind11 --workdir=/pybind11 \
@@ -131,8 +129,6 @@ before_install:
131
129
$DOCKER)
132
130
export SCRIPT_RUN_PREFIX="docker exec --tty $containerid"
133
131
$SCRIPT_RUN_PREFIX sh -c 'for s in 0 15; do sleep $s; apt-get update && apt-get -qy dist-upgrade && break; done'
134
- # gcc-7 currently generates warnings; some are upstream bugs, so just turn off -Werror for now
135
- if [ "$GCC" = "7" ]; then WERROR=off; fi
136
132
else
137
133
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
138
134
pip install --user --upgrade pip virtualenv
You can’t perform that action at this time.
0 commit comments