Commit 7a8e8890 authored by Stefan Behnel's avatar Stefan Behnel

Use newer "libc++" for macos tests instead of deprecated "libstdc++".

parent a9fb7768
......@@ -111,7 +111,7 @@ before_install:
#conda install --quiet --yes nomkl --file=test-requirements.txt --file=test-requirements-cpython.txt
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
which clang && clang --version && export CC=clang || true
which clang++ && clang++ --version && export CXX=clang++ || true
which clang++ && clang++ --version && export CXX=clang++ && export CXXFLAGS="$CXXFLAGS -stdlib=libc++" || true
fi
fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment