Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 0cfee1f

Browse files
authored
Bitcode only for release (#11520)
1 parent bb25e5c commit 0cfee1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def to_gn_args(args):
8989
if args.bitcode:
9090
if args.target_os != 'ios':
9191
raise Exception('Bitcode is only supported for iOS')
92-
if runtime_mode == 'debug':
92+
if runtime_mode != 'release':
9393
gn_args['bitcode_marker'] = True
9494

9595
gn_args['enable_bitcode'] = args.bitcode

0 commit comments

Comments
 (0)