From 9c57f5409adbb58f978a4fdd6898fe91612a1525 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Mon, 25 May 2015 14:01:59 +0100 Subject: [PATCH] Use gnu++14, as some posix functions disappear in c++14 mode --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 6da2d796..4c876a8c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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