Skip to content

Commit

Permalink
Enable compressed pointers on iOS for 64 bit architectures. (#30333)
Browse files Browse the repository at this point in the history
  • Loading branch information
a-siva authored Dec 15, 2021
1 parent ebeed5a commit fe1cd17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/gn
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ def to_gn_args(args):
gn_args['bssl_use_clang_integrated_as'] = True

# Enable pointer compression on 64-bit mobile targets.
if args.target_os in ['android'] and gn_args['target_cpu'] in ['x64' , 'arm64']:
if args.target_os in ['android', 'ios'] and gn_args['target_cpu'] in ['x64' , 'arm64']:
gn_args['dart_use_compressed_pointers'] = True

if args.fuchsia_target_api_level is not None:
Expand Down

0 comments on commit fe1cd17

Please sign in to comment.