Skip to content

Commit

Permalink
Use g++-4.8 libstdc++ instead of 4.9 for clang.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rapptz committed Mar 6, 2015
1 parent 4ab967f commit 189fac5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ before_install:
- if [ -n "$LIBCXX" -a "$CXX" == "clang++" ]; then cd /usr/lib && sudo ln -sf libc++.so.1.0 libc++.so; fi
- if [ -n "$LIBCXX" -a "$CXX" == "clang++" ]; then sudo ln -sf libc++.so.1.0 libc++.so.1 && cd $cwd; fi

# Otherwise attempt to install g++ 4.9 libstdc++ instead for use in clang
- if [ -z "$LIBCXX" -a "$CXX" == "clang++" ]; then sudo apt-get install -qq g++-4.9; fi
# Otherwise attempt to install g++ 4.8 libstdc++ instead for use in clang
- if [ -z "$LIBCXX" -a "$CXX" == "clang++" ]; then sudo apt-get install -qq g++-4.8; fi

install:
- cd "$MAIN_PATH"
Expand Down

0 comments on commit 189fac5

Please sign in to comment.