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

Unified Diff: build/common.gypi

Issue 9810036: Remove "-mfloat-abi=hard" from host compiler cflags, which causes building chrome browser failure. (Closed) Base URL: http://git.chromium.org/external/v8.git@master
Patch Set: Created 8 years, 9 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/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 9976d25047ad67c226bab5d4b4d07fc30af75f55..9997e40b61ffe0fb02c94e06661e670d05d4f305 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -157,6 +157,15 @@
}],
],
}],
+ # Host compiler other than arm does not have "-mfloat-abi=hard"
+ # option, remove it from cflags.
+ ['host_arch!="arm"', {
+ 'target_conditions': [
+ ['_toolset=="host"', {
+ 'cflags!': ['-mfloat-abi=hard'],
+ }],
+ ],
+ }],
],
}],
['v8_target_arch=="ia32"', {
« 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