From 5841686a2e17d0c0070da174dfa8ff729db081b5 Mon Sep 17 00:00:00 2001 From: Anton Matosov Date: Tue, 6 Jan 2015 01:27:09 +0200 Subject: [PATCH] Changed the way CC is reset to CXX, used a real value instead of hardcoded g++. --- unittests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittests/Makefile b/unittests/Makefile index 4dbde55f10..f25a56fc44 100644 --- a/unittests/Makefile +++ b/unittests/Makefile @@ -1,5 +1,5 @@ -CC=g++ +CC=$(CXX) CFLAGS=-I. -I../src/modules -I ../src/include -I../src/drivers \ -I../src -I../src/lib -D__EXPORT="" -Dnullptr="0" -lm -std=c++11