Limbo 3.5.4
Loading...
Searching...
No Matches
FindClangxx.mk
Go to the documentation of this file.
1## @file FindClangxx.mk
2## @brief find clang++, determine CXX
3## @author Yibo Lin
4## @date Jan 2017
5##
6## @param CXX set CXX as C++ compiler
7
8## @cond
9
10ifneq ($(shell which clang++),)
11 CXX = clang++
12else
13 CXX = g++
14endif
15
16## @endcond