Skip to content

Commit 1d2cab7

Browse files
committedAug 1, 2016
Try full paths for clang 3.8 on OSX.
1 parent ff76c18 commit 1d2cab7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ before_install:
1717
before_script:
1818
- travis_retry bundle
1919
- if [ $TRAVIS_OS_NAME == linux ]; then travis_retry ./configure --llvm-config=llvm-config-3.6; fi
20-
- if [ $TRAVIS_OS_NAME == osx ]; then travis_retry ./configure --cc=clang-3.8 --cxx=clang++-3.8; fi
20+
- if [ $TRAVIS_OS_NAME == osx ]; then travis_retry ./configure --cc=$(brew --prefix llvm38)/bin/clang-3.8 --cxx=$(brew --prefix llvm38)/bin/clang++-3.8; fi
2121
script: rake ci
2222
after_success:
2323
- if [ $TRAVIS_OS_NAME == linux ]; then ./scripts/build_support.sh archive_core; fi

0 commit comments

Comments
 (0)
Please sign in to comment.