blob: 38a2e53f3e324708558a44bde7b3a167f7f8bb46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
# operating system quirks
ifeq (${OStype},Darwin)
HOST_CC:=clang -fbracket-depth=1024
HOST_CXX:=clang++ -fbracket-depth=1024
else
HOST_CC:=${CC}
HOST_CXX:=${CXX}
endif
|