build: always include debug symbols

This commit is contained in:
Joe Bryan 2019-10-17 18:20:23 -07:00
parent c6b4317aa9
commit 10645a8d23

View File

@ -33,7 +33,7 @@ let
# See https://github.com/NixOS/nixpkgs/issues/18995
hardeningDisable = if debug then [ "all" ] else [];
CFLAGS = if debug then "-O3 -g -Werror" else "-O3 -Werror";
CFLAGS = "-O3 -g -Werror";
MEMORY_DEBUG = debug;
CPU_DEBUG = debug;
EVENT_TIME_DEBUG = false;