Chromium Code Reviews| Index: build/config/arm.gni |
| diff --git a/build/config/arm.gni b/build/config/arm.gni |
| index cc468d89e18e21b0c123d6fa9476a008471f0474..75c5ea9d6dba81a137ca3f4cef19ec0157f97eae 100644 |
| --- a/build/config/arm.gni |
| +++ b/build/config/arm.gni |
| @@ -57,6 +57,9 @@ if (current_cpu == "arm" || v8_current_cpu == "arm") { |
| if (arm_float_abi == "") { |
| if (current_os == "android" || target_os == "android") { |
|
jochen (gone - plz use gerrit)
2016/07/25 15:00:32
why not if (current_os == "chromeos" || target_os
Michael Achenbach
2016/07/25 15:17:58
When s/hardfp/hard this should be the same accordi
Dirk Pranke
2016/07/25 17:14:34
I think the current_cpu != v8_current_cpu check sh
|
| arm_float_abi = "softfp" |
| + } else if (current_os == "linux" && current_cpu != v8_current_cpu) { |
| + # Default to the same as Android for V8 simulator builds. |
| + arm_float_abi = "softfp" |
| } else { |
| arm_float_abi = "hard" |
| } |