Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c6cd460

Browse files
committedJan 22, 2015
configure: remove unused arm_neon variable
Remove the configure check, the flag was dropped in V8 3.28. PR-URL: nodejs/node#559 Reviewed-By: Fedor Indutny <[email protected]>
1 parent 7d9d756 commit c6cd460

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed
 

‎configure

-7
Original file line numberDiff line numberDiff line change
@@ -406,11 +406,6 @@ def is_arch_armv6():
406406
'__ARM_ARCH_6M__' in cc_macros_cache)
407407

408408

409-
def is_arm_neon():
410-
"""Check for ARM NEON support"""
411-
return '__ARM_NEON__' in cc_macros()
412-
413-
414409
def is_arm_hard_float_abi():
415410
"""Check for hardfloat or softfloat eabi on ARM"""
416411
# GCC versions 4.6 and above define __ARM_PCS or __ARM_PCS_VFP to specify
@@ -469,11 +464,9 @@ def configure_arm(o):
469464

470465
if is_arch_armv7():
471466
o['variables']['arm_fpu'] = 'vfpv3'
472-
o['variables']['arm_neon'] = int(is_arm_neon())
473467
o['variables']['arm_version'] = '7'
474468
else:
475469
o['variables']['arm_fpu'] = 'vfpv2'
476-
o['variables']['arm_neon'] = 0
477470
o['variables']['arm_version'] = '6' if is_arch_armv6() else 'default'
478471

479472
o['variables']['arm_thumb'] = 0 # -marm

0 commit comments

Comments
 (0)
Please sign in to comment.