Skip to content
Snippets Groups Projects
Commit e2febe90 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

unix Makefile: -Og doesn't work (at least) with gcc 4.6 below.

Also, don't try to force debug info format, use native.
parent 8fcf7b85
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ LDFLAGS = -lm ...@@ -15,7 +15,7 @@ LDFLAGS = -lm
#Debugging/Optimization #Debugging/Optimization
ifdef DEBUG ifdef DEBUG
CFLAGS += -Og -ggdb CFLAGS += -O0 -g
else else
CFLAGS += -Os #-DNDEBUG CFLAGS += -Os #-DNDEBUG
endif endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment