Skip to content

Commit c601adc

Browse files
bnoordhuisJulien Gilli
authored andcommitted
configure: port remove unused arm_neon variable
Port c6cd460 from io.js. Original commit message: Remove the configure check, the flag was dropped in V8 3.28. PR-URL: nodejs/node#559 Reviewed-By: Fedor Indutny <fedor@indutny.com>
1 parent 354f6fe commit c601adc

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

configure

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -393,11 +393,6 @@ def is_arch_armv6():
393393
'__ARM_ARCH_6M__' in cc_macros_cache)
394394

395395

396-
def is_arm_neon():
397-
"""Check for ARM NEON support"""
398-
return '__ARM_NEON__' in cc_macros()
399-
400-
401396
def is_arm_hard_float_abi():
402397
"""Check for hardfloat or softfloat eabi on ARM"""
403398
# GCC versions 4.6 and above define __ARM_PCS or __ARM_PCS_VFP to specify
@@ -492,11 +487,9 @@ def configure_arm(o):
492487

493488
if is_arch_armv7():
494489
o['variables']['arm_fpu'] = 'vfpv3'
495-
o['variables']['arm_neon'] = int(is_arm_neon())
496490
o['variables']['arm_version'] = '7'
497491
else:
498492
o['variables']['arm_fpu'] = 'vfpv2'
499-
o['variables']['arm_neon'] = 0
500493
o['variables']['arm_version'] = '6' if is_arch_armv6() else 'default'
501494

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

0 commit comments

Comments
 (0)