From 6eca4d657aafddcb9685df4b599a8913ac075b3a Mon Sep 17 00:00:00 2001 From: Szczepan Zalega Date: Mon, 24 Oct 2016 15:52:57 +0200 Subject: Disable warnings about GNU extension during C++ tests compilation Signed-off-by: Szczepan Zalega --- unittest/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittest/Makefile b/unittest/Makefile index 9e8fbc1..dbd003e 100644 --- a/unittest/Makefile +++ b/unittest/Makefile @@ -8,7 +8,7 @@ LIB = -L../build LDLIBS = -lnitrokey BUILD = build -CXXFLAGS = -std=c++14 -fPIC +CXXFLAGS = -std=c++14 -fPIC -Wno-gnu-variable-sized-type-not-at-end CXXSOURCES = $(wildcard *.cc) TARGETS = $(CXXSOURCES:%.cc=$(BUILD)/%) -- cgit v1.2.1