summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2015-05-25 20:32:39 +0100
committerMaxime Coste <frrrwww@gmail.com>2015-05-25 20:32:39 +0100
commit3ca69c38520f174a7f4c33a37a3e99fe6cd0a096 (patch)
treea806a71801cf04290060b7d7279be924770308df /src
parentd83836d026959904058dc8e445cc9f79969d2c8e (diff)
Try gnu++1y
Diffstat (limited to 'src')
-rw-r--r--src/Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/Makefile b/src/Makefile
index 10377693..74b7bad1 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -9,12 +9,9 @@ bindir := $(DESTDIR)$(PREFIX)/bin
sharedir := $(DESTDIR)$(PREFIX)/share/kak
docdir := $(DESTDIR)$(PREFIX)/share/doc/kak
-CXXFLAGS += -g -Wall -Wno-reorder -Wno-sign-compare -pedantic
+CXXFLAGS += -std=gnu++1y -g -Wall -Wno-reorder -Wno-sign-compare -pedantic
ifneq (,$(findstring CYGWIN,$(os)))
- CXXFLAGS += -std=gnu++14
LDFLAGS += -rdynamic
-else
- CXXFLAGS += -std=c++14
endif
os := $(shell uname)