Disable neon asm on aarch64 to unbreak the build

with/ok matthieu
pull/1/head
tb 2023-07-05 15:52:50 +00:00
parent d97e9b6979
commit 93198764fc
1 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile.bsd-wrapper,v 1.26 2021/07/25 15:16:31 matthieu Exp $
# $OpenBSD: Makefile.bsd-wrapper,v 1.27 2023/07/05 15:52:50 tb Exp $
.include <bsd.own.mk>
@ -7,5 +7,8 @@ SHARED_LIBS= pixman-1 40.0
.if ${MACHINE_ARCH} == arm
CONFIGURE_ARGS += --disable-arm-simd --disable-arm-neon
.endif
.if ${MACHINE_ARCH} == aarch64
CONFIGURE_ARGS += --disable-arm-a64-neon
.endif
.include <bsd.xorg.mk>