Skip to content

Commit ff6e273

Browse files
committed
Disable extra debug information for release build and make unstripped version uploadable
1 parent 79eaf15 commit ff6e273

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/compile/common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ DEBUG_SYMBOL_LEVEL="-g2"
119119
if [[ "$BUILD_TYPE" = "Release" ]]
120120
then
121121
FRAME_POINTER_FLAG="-fomit-frame-pointer"
122-
CFLAGS_BUILD_TYPE="-DNDEBUG"
122+
CFLAGS_BUILD_TYPE="-DNDEBUG -g0"
123123
ICU_CFLAGS_BUILD_TYPE="-Oz"
124124
else
125125
FRAME_POINTER_FLAG="-fno-omit-frame-pointer"

0 commit comments

Comments
 (0)