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 committed Jan 25, 2023
1 parent a69bf36 commit 859fb08
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 @@ -328,7 +328,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 859fb08

Please sign in to comment.