From 3062351d377cc055a4bcc697ec4501a22d534229 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20B=C3=A9raud?= <adrien.beraud@savoirfairelinux.com> Date: Thu, 12 Jan 2023 17:15:14 -0500 Subject: [PATCH] contrib: add arm64 to archs with FPU Change-Id: Id9ba5014e14bd75a50d8ffe741f2e5df1c587e71 --- contrib/src/main.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/src/main.mak b/contrib/src/main.mak index b32809ed09..b09cc4973e 100644 --- a/contrib/src/main.mak +++ b/contrib/src/main.mak @@ -220,7 +220,7 @@ LDFLAGS := $(LDFLAGS) $(EXTRA_LDFLAGS) # Do not export those! Use HOSTVARS. # Do the FPU detection, after we have figured out our compilers and flags. -ifneq ($(findstring $(ARCH),aarch64 i386 ppc ppc64 sparc sparc64 x86_64),) +ifneq ($(findstring $(ARCH),aarch64 arm64 i386 ppc ppc64 sparc sparc64 x86_64),) # This should be consistent with include/vlc_cpu.h HAVE_FPU = 1 else ifneq ($(findstring $(ARCH),arm),) -- GitLab