MCPcopy Index your code
hub / github.com/nodejs/node / configure_mips

Function configure_mips

configure.py:1775–1782  ·  view source on GitHub ↗
(o, target_arch)

Source from the content-addressed store, hash-verified

1773
1774
1775def 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
1784def configure_zos(o):
1785 o['variables']['node_static_zoslib'] = b(True)

Callers 1

configure_nodeFunction · 0.85

Calls 1

bFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…