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

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

Issue 1888763002: Build 64bit browser for Android with clang for ARMv8 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Patch Set 2 - Build 64bit browser for Android with clang for ARMv8 Created 4 years, 8 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
Index: build/config/compiler/BUILD.gn
diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn
index 76a42eb399d573f7fce1ad3c5897554af7ce640b..19be4596aad434173b3511e14b31283871ef4109 100644
--- a/build/config/compiler/BUILD.gn
+++ b/build/config/compiler/BUILD.gn
@@ -8,7 +8,7 @@ import("//build/config/compiler/compiler.gni")
import("//build/config/nacl/config.gni")
import("//build/toolchain/cc_wrapper.gni")
-if (current_cpu == "arm") {
+if (current_cpu == "arm" || current_cpu == "arm64") {
import("//build/config/arm.gni")
}
if (current_cpu == "mipsel" || current_cpu == "mips64el") {
@@ -633,6 +633,9 @@ config("compiler_arm_fpu") {
if (current_cpu == "arm" && !is_ios && !is_nacl) {
cflags = [ "-mfpu=$arm_fpu" ]
asmflags = cflags
+ } else if (current_cpu == "arm64" && !is_ios && !is_nacl) {
+ cflags = [ "-mcpu=$arm_fpu" ]
+ asmflags = cflags
}
}
@@ -915,6 +918,7 @@ config("chromium_code") {
if (is_clang) {
# Enable -Wextra for chromium_code when we control the compiler.
cflags += [ "-Wextra" ]
+ cflags += [ "-Wno-error=implicit-exception-spec-mismatch" ]
Nico 2016/05/12 14:09:04 This is still no good. We don't want warnings. See
}
# In Chromium code, we define __STDC_foo_MACROS in order to get the
@@ -975,6 +979,7 @@ config("no_chromium_code") {
# Lots of third-party libraries have unused variables. Instead of
# suppressing them individually, we just blanket suppress them here.
"-Wno-unused-variable",
+ "-Wno-asm-operand-widths",
]
}

Powered by Google App Engine
This is Rietveld 408576698