From ea3eb674c7ae676c42e666332d7729833a6b98ea Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Sun, 24 May 2015 13:51:34 -0700 Subject: [PATCH] default compiler to cc/c++ / remove obsolete special casing for os x --- SConstruct | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/SConstruct b/SConstruct index 8630b4f11..15b9e82fd 100644 --- a/SConstruct +++ b/SConstruct @@ -39,13 +39,11 @@ severities = ['debug', 'warn', 'error', 'none'] ICU_INCLUDES_DEFAULT='/usr/include' ICU_LIBS_DEFAULT='/usr/' -DEFAULT_CC = "gcc" -DEFAULT_CXX = "g++" +DEFAULT_CC = "cc" +DEFAULT_CXX = "c++" DEFAULT_CXX11_CXXFLAGS = " -std=c++11" DEFAULT_CXX11_LINKFLAGS = "" if sys.platform == 'darwin': - DEFAULT_CC = "clang" - DEFAULT_CXX = "clang++" # homebrew default ICU_INCLUDES_DEFAULT='/usr/local/opt/icu4c/include/' ICU_LIBS_DEFAULT='/usr/local/opt/icu4c/'