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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 [ 'v8_can_use_vfp_instructions=="true"', { 132 [ 'v8_can_use_vfp_instructions=="true"', {
133 'defines': [ 133 'defines': [
134 'CAN_USE_VFP_INSTRUCTIONS', 134 'CAN_USE_VFP_INSTRUCTIONS',
135 ], 135 ],
136 }], 136 }],
137 [ 'v8_use_arm_eabi_hardfloat=="true"', { 137 [ 'v8_use_arm_eabi_hardfloat=="true"', {
138 'defines': [ 138 'defines': [
139 'USE_EABI_HARDFLOAT=1', 139 'USE_EABI_HARDFLOAT=1',
140 'CAN_USE_VFP_INSTRUCTIONS', 140 'CAN_USE_VFP_INSTRUCTIONS',
141 ], 141 ],
142 'cflags': [ 142 'target_conditions': [
143 '-mfloat-abi=hard', 143 ['_toolset=="target"', {
144 'cflags': ['-mfloat-abi=hard',],
145 }],
144 ], 146 ],
145 }, { 147 }, {
146 'defines': [ 148 'defines': [
147 'USE_EABI_HARDFLOAT=0', 149 'USE_EABI_HARDFLOAT=0',
148 ], 150 ],
149 }], 151 }],
150 # The ARM assembler assumes the host is 32 bits, 152 # The ARM assembler assumes the host is 32 bits,
151 # so force building 32-bit host tools. 153 # so force building 32-bit host tools.
152 ['host_arch=="x64" or OS=="android"', { 154 ['host_arch=="x64" or OS=="android"', {
153 'target_conditions': [ 155 'target_conditions': [
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 # some test cases can cause stack overflow. 385 # some test cases can cause stack overflow.
384 # 'StackReserveSize': '297152', 386 # 'StackReserveSize': '297152',
385 }, 387 },
386 }, 388 },
387 }], # OS=="win" 389 }], # OS=="win"
388 ], # conditions 390 ], # conditions
389 }, # Release 391 }, # Release
390 }, # configurations 392 }, # configurations
391 }, # target_defaults 393 }, # target_defaults
392 } 394 }
OLDNEW
« 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