Use gnu++14, as some posix functions disappear in c++14 mode

This commit is contained in:
Maxime Coste 2015-05-25 14:01:59 +01:00
parent 7b7427e1a6
commit 9c57f5409a

View File

@ -9,7 +9,7 @@ bindir := $(DESTDIR)$(PREFIX)/bin
sharedir := $(DESTDIR)$(PREFIX)/share/kak
docdir := $(DESTDIR)$(PREFIX)/share/doc/kak
CXXFLAGS += -std=c++14 -g -Wall -Wno-reorder -Wno-sign-compare -pedantic
CXXFLAGS += -std=gnu++14 -g -Wall -Wno-reorder -Wno-sign-compare -pedantic
ifneq (,$(findstring CYGWIN,$(os)))
LDFLAGS += -rdynamic
endif