diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-07-17 16:07:37 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-07-17 16:07:37 +0200 |
commit | 85292f459b724de0c0e82b10987d4e5bef6dd095 (patch) | |
tree | 8d25c437dd7af5d449a2d4820e7a1c43880551d9 /options.mk | |
parent | 6f9a9f929d8b61aa7d07e6b406fb6216e92ca4c0 (diff) |
Added '-g'
Diffstat (limited to 'options.mk')
-rw-r--r-- | options.mk | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |