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

Side by Side Diff: build/common.gypi

Issue 11028116: ARM: allow VFP3 instructions when hardfloat is enabled. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 ], 145 ],
146 }], 146 }],
147 [ 'v8_can_use_vfp3_instructions=="true"', { 147 [ 'v8_can_use_vfp3_instructions=="true"', {
148 'defines': [ 148 'defines': [
149 'CAN_USE_VFP3_INSTRUCTIONS', 149 'CAN_USE_VFP3_INSTRUCTIONS',
150 ], 150 ],
151 }], 151 }],
152 [ 'v8_use_arm_eabi_hardfloat=="true"', { 152 [ 'v8_use_arm_eabi_hardfloat=="true"', {
153 'defines': [ 153 'defines': [
154 'USE_EABI_HARDFLOAT=1', 154 'USE_EABI_HARDFLOAT=1',
155 'CAN_USE_VFP2_INSTRUCTIONS', 155 'CAN_USE_VFP3_INSTRUCTIONS',
156 ], 156 ],
157 'target_conditions': [ 157 'target_conditions': [
158 ['_toolset=="target"', { 158 ['_toolset=="target"', {
159 'cflags': ['-mfloat-abi=hard',], 159 'cflags': ['-mfloat-abi=hard',],
160 }], 160 }],
161 ], 161 ],
162 }, { 162 }, {
163 'defines': [ 163 'defines': [
164 'USE_EABI_HARDFLOAT=0', 164 'USE_EABI_HARDFLOAT=0',
165 ], 165 ],
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 'OptimizeReferences': '2', 426 'OptimizeReferences': '2',
427 'EnableCOMDATFolding': '2', 427 'EnableCOMDATFolding': '2',
428 }, 428 },
429 }, 429 },
430 }], # OS=="win" 430 }], # OS=="win"
431 ], # conditions 431 ], # conditions
432 }, # Release 432 }, # Release
433 }, # configurations 433 }, # configurations
434 }, # target_defaults 434 }, # target_defaults
435 } 435 }
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