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

Side by Side Diff: build/common.gypi

Issue 11570061: Hardfloat does not imply VFPv3, only VFPv2. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years 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 | Annotate | Revision Log
« 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 # NEON implies VFP3. 155 # NEON implies VFP3.
156 [ 'v8_can_use_vfp3_instructions=="true" or arm_neon==1 or \ 156 [ 'v8_can_use_vfp3_instructions=="true" or arm_neon==1 or \
157 arm_fpu=="vfpv3" or arm_fpu=="vfpv3-d16"', { 157 arm_fpu=="vfpv3" or arm_fpu=="vfpv3-d16"', {
158 'defines': [ 158 'defines': [
159 'CAN_USE_VFP3_INSTRUCTIONS', 159 'CAN_USE_VFP3_INSTRUCTIONS',
160 ], 160 ],
161 }], 161 }],
162 [ 'v8_use_arm_eabi_hardfloat=="true"', { 162 [ 'v8_use_arm_eabi_hardfloat=="true"', {
163 'defines': [ 163 'defines': [
164 'USE_EABI_HARDFLOAT=1', 164 'USE_EABI_HARDFLOAT=1',
165 'CAN_USE_VFP3_INSTRUCTIONS', 165 'CAN_USE_VFP2_INSTRUCTIONS',
166 ], 166 ],
167 'target_conditions': [ 167 'target_conditions': [
168 ['_toolset=="target"', { 168 ['_toolset=="target"', {
169 'cflags': ['-mfloat-abi=hard',], 169 'cflags': ['-mfloat-abi=hard',],
170 }], 170 }],
171 ], 171 ],
172 }, { 172 }, {
173 'defines': [ 173 'defines': [
174 'USE_EABI_HARDFLOAT=0', 174 'USE_EABI_HARDFLOAT=0',
175 ], 175 ],
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 'OptimizeReferences': '2', 459 'OptimizeReferences': '2',
460 'EnableCOMDATFolding': '2', 460 'EnableCOMDATFolding': '2',
461 }, 461 },
462 }, 462 },
463 }], # OS=="win" 463 }], # OS=="win"
464 ], # conditions 464 ], # conditions
465 }, # Release 465 }, # Release
466 }, # configurations 466 }, # configurations
467 }, # target_defaults 467 }, # target_defaults
468 } 468 }
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