diff options
| author | Marius Kintel <marius@kintel.net> | 2013-06-18 05:58:15 (GMT) | 
|---|---|---|
| committer | Marius Kintel <marius@kintel.net> | 2013-06-18 05:58:15 (GMT) | 
| commit | 169e08adce2b049cdb11aaba8a713548236e3d2d (patch) | |
| tree | fef39bac05241b9230c8c42b33f24d7926fddc57 /scripts | |
| parent | 6d91540e4cc3f9fe0caaea63ac64518a5626d28b (diff) | |
Default to clang for Mac
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/macosx-build-dependencies.sh | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/scripts/macosx-build-dependencies.sh b/scripts/macosx-build-dependencies.sh index 03f8598..9cc0662 100755 --- a/scripts/macosx-build-dependencies.sh +++ b/scripts/macosx-build-dependencies.sh @@ -8,6 +8,7 @@  #  # Usage: macosx-build-dependencies.sh [-6lcd]  #  -6   Build only 64-bit binaries +#  -c   Force use of LLVM compiler  #  -l   Force use of LLVM compiler  #  -c   Force use of clang compiler  #  -d   Build for deployment (if not specified, e.g. Sparkle won't be built) @@ -17,6 +18,7 @@  #  # FIXME:  # o Verbose option +# o Force rebuild vs. only rebuild changes  #  BASEDIR=$PWD/../libraries @@ -392,7 +394,7 @@ elif $OPTION_GCC; then  elif $OPTION_CLANG; then    USING_CLANG=true  elif (( $OSX_VERSION >= 7 )); then -  USING_GCC=true +  USING_CLANG=true  fi  if $USING_LLVM; then | 
