default compiler to cc/c++ / remove obsolete special casing for os x
This commit is contained in:
parent
b0f93e4596
commit
ea3eb674c7
1 changed files with 2 additions and 4 deletions
|
@ -39,13 +39,11 @@ severities = ['debug', 'warn', 'error', 'none']
|
||||||
ICU_INCLUDES_DEFAULT='/usr/include'
|
ICU_INCLUDES_DEFAULT='/usr/include'
|
||||||
ICU_LIBS_DEFAULT='/usr/'
|
ICU_LIBS_DEFAULT='/usr/'
|
||||||
|
|
||||||
DEFAULT_CC = "gcc"
|
DEFAULT_CC = "cc"
|
||||||
DEFAULT_CXX = "g++"
|
DEFAULT_CXX = "c++"
|
||||||
DEFAULT_CXX11_CXXFLAGS = " -std=c++11"
|
DEFAULT_CXX11_CXXFLAGS = " -std=c++11"
|
||||||
DEFAULT_CXX11_LINKFLAGS = ""
|
DEFAULT_CXX11_LINKFLAGS = ""
|
||||||
if sys.platform == 'darwin':
|
if sys.platform == 'darwin':
|
||||||
DEFAULT_CC = "clang"
|
|
||||||
DEFAULT_CXX = "clang++"
|
|
||||||
# homebrew default
|
# homebrew default
|
||||||
ICU_INCLUDES_DEFAULT='/usr/local/opt/icu4c/include/'
|
ICU_INCLUDES_DEFAULT='/usr/local/opt/icu4c/include/'
|
||||||
ICU_LIBS_DEFAULT='/usr/local/opt/icu4c/'
|
ICU_LIBS_DEFAULT='/usr/local/opt/icu4c/'
|
||||||
|
|
Loading…
Reference in a new issue