Commit c494308b authored by Hisham Muhammad's avatar Hisham Muhammad
Browse files

Add an additional debug mode for Hardened GCC.

parent c4fbd7fc
......@@ -32,7 +32,11 @@ profile:
$(MAKE) all CFLAGS="-pg -O2"
debug:
$(MAKE) all CFLAGS="-g -DDEBUG"
$(MAKE) all CFLAGS="-ggdb -DDEBUG"
hardened-debug:
$(MAKE) all CFLAGS="-ggdb -DDEBUG" LDFLAGS="-nopie"
debuglite:
$(MAKE) all CFLAGS="-g -DDEBUGLITE"
$(MAKE) all CFLAGS="-ggdb -DDEBUGLITE"
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment