From d56d690d7792ca7729b1b15dbfcff45f3fc4f99e Mon Sep 17 00:00:00 2001 From: Anton Mitrokhin Date: Fri, 11 Jul 2014 18:25:33 +0400 Subject: [PATCH] Fixed Makefile target gcc to use g++ instead of clang --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e6e742a3..29b5875e 100644 --- a/Makefile +++ b/Makefile @@ -240,9 +240,9 @@ ispc: print_llvm_src dirs $(OBJS) clang: ispc clang: CXX=clang++ -# Use gcc as a default compiler, instead of gcc +# Use gcc as a default compiler gcc: ispc -gcc: CXX=clang++ +gcc: CXX=g++ # Build ispc with address sanitizer instrumentation using clang compiler # Note that this is not portable build