aboutsummaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorAnton Matosov <anton.matosov@gmail.com>2015-01-06 01:27:09 +0200
committerAnton Matosov <anton.matosov@gmail.com>2015-01-06 01:27:09 +0200
commit5841686a2e17d0c0070da174dfa8ff729db081b5 (patch)
treee63302b04ca0a215167d564e929851490e15d7a9 /unittests
parent9767dd6c30472a06bbfce8d95e83d37c7061ed06 (diff)
downloadpx4-firmware-5841686a2e17d0c0070da174dfa8ff729db081b5.tar.gz
px4-firmware-5841686a2e17d0c0070da174dfa8ff729db081b5.tar.bz2
px4-firmware-5841686a2e17d0c0070da174dfa8ff729db081b5.zip
Changed the way CC is reset to CXX, used a real value instead of hardcoded g++.
Diffstat (limited to 'unittests')
-rw-r--r--unittests/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/Makefile b/unittests/Makefile
index 4dbde55f1..f25a56fc4 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