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

Function configure_arm

configure.py:1749–1772  ·  view source on GitHub ↗
(o)

Source from the content-addressed store, hash-verified

1747 configs['Debug']['variables'][name] = debug
1748
1749def configure_arm(o):
1750 if options.arm_float_abi:
1751 arm_float_abi = options.arm_float_abi
1752 elif is_arm_hard_float_abi():
1753 arm_float_abi = 'hard'
1754 else:
1755 arm_float_abi = 'default'
1756
1757 arm_fpu = 'vfp'
1758
1759 if is_arch_armv7():
1760 arm_fpu = 'vfpv3'
1761 o['variables']['arm_version'] = '7'
1762 else:
1763 o['variables']['arm_version'] = 'default'
1764
1765 o['variables']['arm_thumb'] = 0 # -marm
1766 o['variables']['arm_float_abi'] = arm_float_abi
1767
1768 if options.dest_os == 'android':
1769 arm_fpu = 'vfpv3'
1770 o['variables']['arm_version'] = '7'
1771
1772 o['variables']['arm_fpu'] = options.arm_fpu or arm_fpu
1773
1774
1775def configure_mips(o, target_arch):

Callers 1

configure_nodeFunction · 0.85

Calls 2

is_arm_hard_float_abiFunction · 0.85
is_arch_armv7Function · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…