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

Unified Diff: build/config/android/BUILD.gn

Issue 2030003002: MIPS64: Add clang compile flags for MIPS64r6 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 | « build/common.gypi ('k') | build/config/compiler/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/android/BUILD.gn
diff --git a/build/config/android/BUILD.gn b/build/config/android/BUILD.gn
index 883b82ffd556614636b586fe9a12a019921c4b1c..b966d8cd84d269d589c113ee386bba36d2ccf2ff 100644
--- a/build/config/android/BUILD.gn
+++ b/build/config/android/BUILD.gn
@@ -27,10 +27,10 @@ config("compiler") {
rebased_android_toolchain_root =
rebase_path(android_toolchain_root, root_build_dir)
assert(rebased_android_toolchain_root != "") # Mark as used.
- if (current_cpu == "mipsel") {
+ if (current_cpu == "mipsel" || current_cpu == "mips64el") {
cflags += [
# TODO(gordanac) Enable integrated-as.
- "-no-integrated-as",
+ "-fno-integrated-as",
"-B${rebased_android_toolchain_root}/bin", # Else /usr/bin/as gets picked up.
]
}
« no previous file with comments | « build/common.gypi ('k') | build/config/compiler/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698