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

Also, don't try to force debug info format, use native.
genexit-inst
Paul Sokolovsky 2014-01-25 19:47:05 +02:00
parent 8fcf7b858d
commit e2febe90e3
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ LDFLAGS = -lm
#Debugging/Optimization
ifdef DEBUG
CFLAGS += -Og -ggdb
CFLAGS += -O0 -g
else
CFLAGS += -Os #-DNDEBUG
endif