Skip to content

Commit

Permalink
[Tizen] Fix Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
swift-kim authored and JSUYA committed Mar 18, 2024
1 parent 1a3061c commit 453cb68
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 @@ -430,7 +430,7 @@ def to_gn_args(args):
# bitwidth of the 32-bit arm target.
if sys.platform.startswith(
('cygwin', 'win')
) and args.target_os == 'android' and gn_args['target_cpu'] == 'arm':
) and args.target_os != 'win' and gn_args['target_cpu'] == 'arm':
gn_args['host_cpu'] = 'x86'
gn_args['current_cpu'] = 'x86'

Expand Down

0 comments on commit 453cb68

Please sign in to comment.