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

Side by Side Diff: SConstruct

Issue 6910025: ARM: Add GYP variables to control V8 code generation (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed review comments Created 9 years, 7 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 | tools/gyp/v8.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2011 the V8 project authors. All rights reserved. 1 # Copyright 2011 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 'unalignedaccesses:off' : { 155 'unalignedaccesses:off' : {
156 'CPPDEFINES' : ['CAN_USE_UNALIGNED_ACCESSES=0'] 156 'CPPDEFINES' : ['CAN_USE_UNALIGNED_ACCESSES=0']
157 }, 157 },
158 'armeabi:soft' : { 158 'armeabi:soft' : {
159 'CPPDEFINES' : ['USE_EABI_HARDFLOAT=0'], 159 'CPPDEFINES' : ['USE_EABI_HARDFLOAT=0'],
160 'simulator:none': { 160 'simulator:none': {
161 'CCFLAGS': ['-mfloat-abi=soft'], 161 'CCFLAGS': ['-mfloat-abi=soft'],
162 } 162 }
163 }, 163 },
164 'armeabi:softfp' : { 164 'armeabi:softfp' : {
165 'CPPDEFINES' : ['USE_EABI_HARDFLOAT=0'], 165 'CPPDEFINES' : ['USE_EABI_HARDFLOAT=0', 'CAN_USE_VFP_INSTRUCTIONS'],
166 'simulator:none': { 166 'simulator:none': {
167 'CCFLAGS': ['-mfloat-abi=softfp'], 167 'CCFLAGS': ['-mfloat-abi=softfp'],
168 } 168 }
169 }, 169 },
170 'armeabi:hard' : { 170 'armeabi:hard' : {
171 'CPPDEFINES' : ['USE_EABI_HARDFLOAT=1', 'CAN_USE_VFP_INSTRUCTIONS'], 171 'CPPDEFINES' : ['USE_EABI_HARDFLOAT=1', 'CAN_USE_VFP_INSTRUCTIONS'],
172 'simulator:none': { 172 'simulator:none': {
173 'CCFLAGS': ['-mfloat-abi=hard'], 173 'CCFLAGS': ['-mfloat-abi=hard'],
174 } 174 }
175 } 175 }
(...skipping 1272 matching lines...) Expand 10 before | Expand all | Expand 10 after
1448 # version of scons. Also, there's a bug in some revisions that 1448 # version of scons. Also, there's a bug in some revisions that
1449 # doesn't allow this flag to be set, so we swallow any exceptions. 1449 # doesn't allow this flag to be set, so we swallow any exceptions.
1450 # Lovely. 1450 # Lovely.
1451 try: 1451 try:
1452 SetOption('warn', 'no-deprecated') 1452 SetOption('warn', 'no-deprecated')
1453 except: 1453 except:
1454 pass 1454 pass
1455 1455
1456 1456
1457 Build() 1457 Build()
OLDNEW
« no previous file with comments | « no previous file | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698