OLD | NEW |
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 Loading... |
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 Loading... |
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() |
OLD | NEW |