(o, target_arch)
| 1773 | |
| 1774 | |
| 1775 | def configure_mips(o, target_arch): |
| 1776 | can_use_fpu_instructions = options.mips_float_abi != 'soft' |
| 1777 | o['variables']['v8_can_use_fpu_instructions'] = b(can_use_fpu_instructions) |
| 1778 | o['variables']['v8_use_mips_abi_hardfloat'] = b(can_use_fpu_instructions) |
| 1779 | o['variables']['mips_arch_variant'] = options.mips_arch_variant |
| 1780 | o['variables']['mips_fpu_mode'] = options.mips_fpu_mode |
| 1781 | host_byteorder = 'little' if target_arch in ('mipsel', 'mips64el') else 'big' |
| 1782 | o['variables']['v8_host_byteorder'] = host_byteorder |
| 1783 | |
| 1784 | def configure_zos(o): |
| 1785 | o['variables']['node_static_zoslib'] = b(True) |
no test coverage detected
searching dependent graphs…