Skip to content
Snippets Groups Projects
Commit d9d5b449 authored by Dave Zarzycki's avatar Dave Zarzycki
Browse files

Use Xcode relative compilers when possible

llvm-svn: 151108
parent a7721f6b
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,12 @@
if [ -z $CC ]
then
CC=clang++
if which xcrun >/dev/null
then
CC="xcrun clang++"
else
CC=clang++
fi
fi
if [ -z "$OPTIONS" ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment