From 0107595639a9748ff6ac54a50626f901e5580bd7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B6rn=20Lindqvist?= Date: Thu, 26 May 2016 00:28:10 +0200 Subject: [PATCH] Build: drops debugging symbols, fixes #1634 --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 753fb05c10..fa06ff2d48 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -17,7 +17,7 @@ ifdef CONFIG ifdef DEBUG CFLAGS += -g -DFACTOR_DEBUG else - CFLAGS += -O3 -g + CFLAGS += -O3 endif ENGINE = $(DLL_PREFIX)factor$(DLL_SUFFIX)$(DLL_EXTENSION) -- 2.34.1