Skip to content

Commit 624e4cc

Browse files
marsupialsftnight
authored andcommitted
Travis: Re-enable testing for issues with __float128 on OS X.
1 parent c4a1d43 commit 624e4cc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,11 @@ install:
200200
fi
201201
202202
if [ "$COMPILER" == "g++-6" ]; then
203-
export CLING_BUILD_FLAGS="-DCMAKE_CXX_STANDARD=17 -DCMAKE_CXX_STANDARD_REQUIRED=ON -DCXX_EXTENSIONS=OFF"
203+
export CLING_BUILD_FLAGS="-DCMAKE_CXX_STANDARD=17 -DCMAKE_CXX_STANDARD_REQUIRED=ON"
204+
# On OS X force the test to reproduce __float128 issues with libstdc++.
205+
if [ $TRAVIS_OS_NAME != 'osx' ]; then
206+
export CLING_BUILD_FLAGS="$CLING_BUILD_FLAGS -DCXX_EXTENSIONS=OFF"
207+
fi
204208
CMAKEREQ="3.8"
205209
else
206210
CMAKEREQ="3.6"

0 commit comments

Comments
 (0)