Skip to content

Commit eec517a

Browse files
authored
Expressly enable neon for use with intrinsics if available
1 parent 680f744 commit eec517a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: Makefile.arm

+5
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,8 @@ ifeq ($(CORE), ARMV6)
1212
CCOMMON_OPT += -mfpu=vfp
1313
FCOMMON_OPT += -mfpu=vfp
1414
endif
15+
16+
ifdef HAVE_NEON
17+
CCOMMON_OPT += -mfpu=neon
18+
FCOMMON_OPT += -mfpu=neon
19+
endif

0 commit comments

Comments
 (0)