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

Unified Diff: build/common.gypi

Issue 1140503004: Switch default float-abi for ARM linux from softfp to hard (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | native_client_sdk/src/build_tools/build_artifacts.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index dfa41639f4dd58c069e916f95add33cc176c7abe..e95dd6fb1f9d3b146ad857627dfb2069a8f3cee1 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -2317,9 +2317,12 @@
}, {
'arm_fpu%': 'vfpv3-d16',
}],
+ ['OS=="android"', {
+ 'arm_float_abi%': 'softfp',
+ }, {
+ 'arm_float_abi%': 'hard',
+ }],
],
- # Change the default to hard once the armhf transition is complete.
- 'arm_float_abi%': 'softfp',
'arm_thumb%': 1,
}],
« no previous file with comments | « no previous file | native_client_sdk/src/build_tools/build_artifacts.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698