We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 255045b commit 3ec59acCopy full SHA for 3ec59ac
tools/gn
@@ -423,8 +423,8 @@ def to_gn_args(args):
423
gn_args['enable_vulkan_validation_layers'] = True
424
425
426
- # Enable pointer compression on 64-bit mobile targets.
427
- if args.target_os in ['android', 'ios'] and gn_args['target_cpu'] in ['x64' , 'arm64']:
+ # Enable pointer compression on 64-bit targets.
+ if args.target_os in ['android', 'ios', 'linux'] and gn_args['target_cpu'] in ['x64' , 'arm64']:
428
gn_args['dart_use_compressed_pointers'] = True
429
430
if args.fuchsia_target_api_level is not None:
0 commit comments