Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(199)

Unified Diff: tools/gn.py

Issue 2867733002: GN: On Linux still fallback to GCC for ARM64 build. (Closed)
Patch Set: Done Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn.py
diff --git a/tools/gn.py b/tools/gn.py
index 32884b072f9b151685e5a5da622fb4f02f13608f..5972295692541c14a777e130559c371e80c27466 100755
--- a/tools/gn.py
+++ b/tools/gn.py
@@ -170,6 +170,8 @@ def ToGnArgs(args, mode, arch, target_os):
# a clang-based sanitizer is specified.
has_clang = (host_os != 'win'
and not gn_args['target_cpu'].startswith('mips')
+ and not ((gn_args['target_os'] == 'linux') and
+ (gn_args['target_cpu'] == 'arm64'))
and not ((gn_args['target_os'] == 'linux')
and (gn_args['host_cpu'] == 'x86')
and not args.asan
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698