Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fa62a78

Browse files
committedJul 6, 2018
Fix Mac build.sh clang paths
For Mac ("Darwin"), fix build.sh clang compiler paths to match the correct paths from setup.sh lines 37-38.
1 parent 40b64ba commit fa62a78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ else
4949
if [ "$(uname)" == "Darwin" ]; then
5050
CMAKE="$(greadlink -f cmake_build/bin/cmake)"
5151

52-
export CC=/usr/local/opt/llvm\@5.0/bin/clang
53-
export CXX=/usr/local/opt/llvm\@5.0/bin/clang++
52+
export CC=/usr/local/opt/llvm-5.0/bin/clang-5.0
53+
export CXX=/usr/local/opt/llvm-5.0/bin/clang++-5.0
5454
else
5555
CMAKE="$(readlink -f cmake_build/bin/cmake)"
5656

0 commit comments

Comments
 (0)
Please sign in to comment.