Skip to content

Commit dfbcf9e

Browse files
committed
Use -ggdb3 and -O0 when doing debug builds
Who cares about size??? These are debug builds!
1 parent 65ee781 commit dfbcf9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-scripts/configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ case "$BUILD_TYPE" in
7979
ARGS="$ARGS --enable-debug"
8080
# Override the default "-g3 -O0" that comes with ./configure --enable-debug
8181
# in order to reduce the size of the packages
82-
CFLAGS="-g2 -O1 $CFLAGS"
82+
CFLAGS="-ggdb3 -O0 $CFLAGS"
8383
;;
8484
CODE_COVERAGE)
8585
ARGS="$ARGS --enable-debug"

0 commit comments

Comments
 (0)