Limbo
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FindClang.mk
Go to the documentation of this file.
1 ## @file FindClang.mk
2 ## @brief find clang, determine CC
3 ## @author Yibo Lin
4 ## @date Jan 2017
5 ##
6 ## @param CC set CC as C compiler
7 
8 ## @cond
9 
10 ifneq ($(shell which clang),)
11  CC = clang
12 else
13  CC = gcc
14 endif
15 
16 ## @endcond