1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-02-02 10:51:16 +00:00

Merge pull request #1408 from neheb/patch-2

Switch debug to -Og
This commit is contained in:
Jens Steube 2017-10-28 13:38:48 +02:00 committed by GitHub
commit e6978c23c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -180,10 +180,10 @@ CFLAGS += -O2
LFLAGS += -s LFLAGS += -s
else else
ifeq ($(DEBUG),1) ifeq ($(DEBUG),1)
CFLAGS += -DDEBUG -g -ggdb CFLAGS += -DDEBUG -Og -ggdb
else else
ifeq ($(DEBUG),2) ifeq ($(DEBUG),2)
CFLAGS += -DDEBUG -g -ggdb CFLAGS += -DDEBUG -Og -ggdb
CFLAGS += -fsanitize=address -fno-omit-frame-pointer CFLAGS += -fsanitize=address -fno-omit-frame-pointer
endif endif
endif endif