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

Unified Diff: build/toolchain.gypi

Issue 48113015: Define USE_EABI_HARDFLOAT when arm_float_abi is 'default' (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Created 7 years, 2 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/toolchain.gypi
diff --git a/build/toolchain.gypi b/build/toolchain.gypi
index de41fe0d00189e2a20576c63004e21a6ad14a9d8..05c0258927d50465d6506f8dbbb067b86c1a87e9 100644
--- a/build/toolchain.gypi
+++ b/build/toolchain.gypi
@@ -109,7 +109,7 @@
}],
],
}],
- [ 'arm_float_abi!="default"', {
+ [ 'arm_float_abi!="default" and arm_float_abi!=""', {
'cflags': ['-mfloat-abi=<(arm_float_abi)',],
}],
[ 'arm_thumb==1', {
@@ -156,12 +156,12 @@
}],
],
}],
- [ 'arm_float_abi=="hard"', {
+ [ 'arm_float_abi=="hard" or arm_float_abi=="default" or arm_float_abi==""', {
'defines': [
'USE_EABI_HARDFLOAT=1',
],
}],
- [ 'arm_float_abi=="softfp" or arm_float_abi=="default"', {
+ [ 'arm_float_abi=="softfp"', {
'defines': [
'USE_EABI_HARDFLOAT=0',
],
@@ -197,7 +197,7 @@
}],
],
}],
- [ 'arm_float_abi!="default"', {
+ [ 'arm_float_abi!="default" and arm_float_abi!=""', {
'cflags': ['-mfloat-abi=<(arm_float_abi)',],
}],
[ 'arm_thumb==1', {
@@ -244,12 +244,12 @@
}],
],
}],
- [ 'arm_float_abi=="hard"', {
+ [ 'arm_float_abi=="hard" or arm_float_abi=="default" or arm_float_abi==""', {
'defines': [
'USE_EABI_HARDFLOAT=1',
],
}],
- [ 'arm_float_abi=="softfp" or arm_float_abi=="default"', {
+ [ 'arm_float_abi=="softfp"', {
'defines': [
'USE_EABI_HARDFLOAT=0',
],
« 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