From d0f007b5d9315d0c066c75404c2d521d6562b5c6 Mon Sep 17 00:00:00 2001 From: Oli Larkin Date: Sat, 14 Oct 2017 15:35:38 +0100 Subject: [PATCH] added a note about libc++ in xconfig --- common.xcconfig | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/common.xcconfig b/common.xcconfig index d960076f..510a3c34 100644 --- a/common.xcconfig +++ b/common.xcconfig @@ -16,13 +16,14 @@ COMPILER = com.apple.compilers.llvm.clang.1_0 // or this with xcode4+/10.7+ //BASE_SDK = macosx10.6 //BASE_SDK = macosx10.7 // Carbon GUIs do not work fully with the 10.7 or higher sdks //BASE_SDK = macosx10.8 -BASE_SDK = macosx10.9 +BASE_SDK = macosx10.13 //CLANG_CXX_LANGUAGE_STANDARD = c++0x -//CLANG_CXX_LIBRARY = libc++ +CLANG_CXX_LIBRARY = libc++ +//CLANG_CXX_LIBRARY = libstdc++ // 10.6 < doesn't support libc++ so you have to use this if you want to support 10.6 // the minimum OS to support -DEPLOYMENT_TARGET = 10.5 +DEPLOYMENT_TARGET = 10.5 // 10.7 or higher for C++11 // Where the SDKs etc are located in relation to the plugin xcode project WDL_PATH = $(SRCROOT)/../../WDL -- 2.11.4.GIT