Leave debug information for opt builds

This commit is contained in:
Christophe de Dinechin 2017-04-18 17:42:33 +02:00
parent 8fe4ce84e2
commit 649859601c
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ INSTALL= install
#------------------------------------------------------------------------------
CFLAGS_debug= -g -Wall -fno-inline
CFLAGS_opt= -O3 -Wall
CFLAGS_opt= -g -O3 -Wall
CFLAGS_release= -O3 -Wall
CFLAGS_profile= -pg
CFLAGS_cxx= -x c++