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

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

Issue 135733005: Fix flags for ARM GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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: build/config/compiler/BUILD.gn
diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn
index cc95d62fee6ad76d2799a67e837c52ed3f262916..98d254ec6a3ca704035b450d6d211ecdb540acbc 100644
--- a/build/config/compiler/BUILD.gn
+++ b/build/config/compiler/BUILD.gn
@@ -110,7 +110,7 @@ config("compiler") {
cflags += [
"-march=$arm_arch",
"-mfpu=$arm_fpu",
- "-mfloat_abi=$arm_float_abi",
+ "-mfloat-abi=$arm_float_abi",
]
if (arm_tune != "") {
cflags += "-mtune=$arm_tune"
@@ -118,7 +118,7 @@ config("compiler") {
if (arm_use_thumb) {
cflags += [ "-mthumb" ]
if (is_android) {
- cflags += [ "-mthumb_interwork" ]
+ cflags += [ "-mthumb-interwork" ]
}
}
}
« 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