Skip to content

Commit 3ec59ac

Browse files
authored
Enable compressed pointers for arm64 (#266)
1 parent 255045b commit 3ec59ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/gn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -423,8 +423,8 @@ def to_gn_args(args):
423423
gn_args['enable_vulkan_validation_layers'] = True
424424

425425

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']:
426+
# Enable pointer compression on 64-bit targets.
427+
if args.target_os in ['android', 'ios', 'linux'] and gn_args['target_cpu'] in ['x64' , 'arm64']:
428428
gn_args['dart_use_compressed_pointers'] = True
429429

430430
if args.fuchsia_target_api_level is not None:

0 commit comments

Comments
 (0)