clang-wrapper: Set $CXX to clang

This is useful for non-Autoconf-based packages, since GNU Make's
default for CXX is "g++".  (The CC default is "cc" so should work fine
with Clang already.)
This commit is contained in:
Eelco Dolstra 2014-01-23 11:22:44 +01:00
parent c07559b782
commit 6a8485af6b

View File

@ -31,3 +31,6 @@ fi
if test -n "@coreutils@"; then
addToSearchPath PATH @coreutils@/bin
fi
: ${CXX:=clang++}
export CXX