From 0aeb2cd64f94c76860f2ae386e88f3c9d2fff578 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sat, 17 Jun 2017 08:15:32 +0100 Subject: [PATCH] Disable -Wnoexcept-type warning We dont really care that the mangled name will change, Kakoune is not built as a library. Fixes #1436 --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 25b53ffa..186b0075 100644 --- a/src/Makefile +++ b/src/Makefile @@ -59,7 +59,7 @@ ifeq ($(static),yes) LDFLAGS += -static -pthread endif -CXXFLAGS += -pedantic -std=gnu++11 -g -Wall -Wextra -Wno-unused-parameter -Wno-reorder -Wno-sign-compare -Wno-address +CXXFLAGS += -pedantic -std=gnu++11 -g -Wall -Wextra -Wno-unused-parameter -Wno-reorder -Wno-sign-compare -Wno-address -Wno-noexcept-type -Wno-unknown-warning-option all : kak