aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2024-07-17 16:07:37 +0200
committerMarkus Uhlin <markus@nifty-networks.net>2024-07-17 16:07:37 +0200
commit85292f459b724de0c0e82b10987d4e5bef6dd095 (patch)
tree8d25c437dd7af5d449a2d4820e7a1c43880551d9
parent6f9a9f929d8b61aa7d07e6b406fb6216e92ca4c0 (diff)
Added '-g'
-rw-r--r--options.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/options.mk b/options.mk
index ba4a636..ca33201 100644
--- a/options.mk
+++ b/options.mk
@@ -6,12 +6,12 @@ FICS_HOME ?= /home/chess/config
PREFIX ?= /home/chess
CC ?= cc
-CFLAGS = -O2 -Wall -pipe -std=c11 \
+CFLAGS = -O2 -Wall -g -pipe -std=c11 \
-Wsign-compare \
-Wstrict-prototypes
CXX ?= c++
-CXXFLAGS = -O2 -Wall -pipe -std=c++17
+CXXFLAGS = -O2 -Wall -g -pipe -std=c++17
# C preprocessor flags
CPPFLAGS = -D_DEFAULT_SOURCE=1