From 8dd2ee57dedfb3baba40d3ec11ac4c7cb45165d5 Mon Sep 17 00:00:00 2001 From: Oli Larkin Date: Mon, 6 Oct 2014 21:25:34 +0100 Subject: [PATCH] default to clang compiler --- common.xcconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common.xcconfig b/common.xcconfig index 32002595..c092f9b7 100644 --- a/common.xcconfig +++ b/common.xcconfig @@ -6,10 +6,10 @@ CERTIFICATE_ID = Your_Developer_ID // Which compiler to use -COMPILER = com.apple.compilers.gcc.4_2 // use this with xcode3 +//COMPILER = com.apple.compilers.gcc.4_2 // use this with xcode3 //COMPILER = com.intel.compilers.icc.12_1_0 //COMPILER = com.apple.compilers.llvmgcc42 // use this ... -//COMPILER = com.apple.compilers.llvm.clang.1_0 // or this with xcode4+/10.7+ +COMPILER = com.apple.compilers.llvm.clang.1_0 // or this with xcode4+/10.7+ // which osx sdk to compile against - BASE_SDK rather than SDKROOT so we can override other xcconfigs (avid's) BASE_SDK = macosx10.5 -- 2.11.4.GIT