| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 'CAN_USE_VFP_INSTRUCTIONS', | 90 'CAN_USE_VFP_INSTRUCTIONS', |
| 91 ], | 91 ], |
| 92 'cflags': [ | 92 'cflags': [ |
| 93 '-mfloat-abi=hard', | 93 '-mfloat-abi=hard', |
| 94 ], | 94 ], |
| 95 }, { | 95 }, { |
| 96 'defines': [ | 96 'defines': [ |
| 97 'USE_EABI_HARDFLOAT=0', | 97 'USE_EABI_HARDFLOAT=0', |
| 98 ], | 98 ], |
| 99 }], | 99 }], |
| 100 # The ARM assembler assumes the host is 32 bits, | |
| 101 # so force building 32-bit host tools. | |
| 102 [ 'host_arch=="x64" and _toolset=="host "', { | |
| 103 'cflags': ['-m32'], | |
| 104 'ldflags': ['-m32'], | |
| 105 }], | |
| 106 ], | 100 ], |
| 107 }], | 101 }], |
| 108 ['v8_target_arch=="ia32"', { | 102 ['v8_target_arch=="ia32"', { |
| 109 'defines': [ | 103 'defines': [ |
| 110 'V8_TARGET_ARCH_IA32', | 104 'V8_TARGET_ARCH_IA32', |
| 111 ], | 105 ], |
| 112 }], | 106 }], |
| 113 ['v8_target_arch=="mips"', { | 107 ['v8_target_arch=="mips"', { |
| 114 'defines': [ | 108 'defines': [ |
| 115 'V8_TARGET_ARCH_MIPS', | 109 'V8_TARGET_ARCH_MIPS', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 129 'DEBUG', | 123 'DEBUG', |
| 130 '_DEBUG', | 124 '_DEBUG', |
| 131 'ENABLE_DISASSEMBLER', | 125 'ENABLE_DISASSEMBLER', |
| 132 'V8_ENABLE_CHECKS', | 126 'V8_ENABLE_CHECKS', |
| 133 'OBJECT_PRINT', | 127 'OBJECT_PRINT', |
| 134 ], | 128 ], |
| 135 } | 129 } |
| 136 } | 130 } |
| 137 } | 131 } |
| 138 } | 132 } |
| OLD | NEW |