aboutsummaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorAnton Matosov <anton.matosov@gmail.com>2015-01-05 01:18:29 +0200
committerAnton Matosov <anton.matosov@gmail.com>2015-01-05 12:02:32 +0200
commit0e4268a80450c3cc9915bdf823fb78981149318b (patch)
tree67d4508b8e0df826a130a622083cdbb3da953d98 /unittests
parenta4cf9be8e0afdc2674c482791179d70e7312ae5d (diff)
downloadpx4-firmware-0e4268a80450c3cc9915bdf823fb78981149318b.tar.gz
px4-firmware-0e4268a80450c3cc9915bdf823fb78981149318b.tar.bz2
px4-firmware-0e4268a80450c3cc9915bdf823fb78981149318b.zip
Enabled C++11 for tests target (trying other compiler flag)
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 038e8b8f7..7846638d4 100644
--- a/unittests/Makefile
+++ b/unittests/Makefile
@@ -1,7 +1,7 @@
CC=g++
CFLAGS=-I. -I../src/modules -I ../src/include -I../src/drivers \
- -I../src -I../src/lib -D__EXPORT="" -Dnullptr="0" -lm -std=c++11
+ -I../src -I../src/lib -D__EXPORT="" -Dnullptr="0" -lm -std=gnu++0x
# Points to the root of Google Test, relative to where this file is.
# Remember to tweak this if you move this file.