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: ...@@ -32,7 +32,11 @@ profile:
$(MAKE) all CFLAGS="-pg -O2" $(MAKE) all CFLAGS="-pg -O2"
debug: debug:
$(MAKE) all CFLAGS="-g -DDEBUG" $(MAKE) all CFLAGS="-ggdb -DDEBUG"
hardened-debug:
$(MAKE) all CFLAGS="-ggdb -DDEBUG" LDFLAGS="-nopie"
debuglite: 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