From 8dc2fdf41c86086a6f100bfd4c594114bc805291 Mon Sep 17 00:00:00 2001 From: Duncan Bellamy Date: Sat, 9 Oct 2021 11:02:16 +0000 Subject: [PATCH] community/vectorscan: build with lowest armv8 arch for aarch64 --- community/vectorscan/APKBUILD | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/community/vectorscan/APKBUILD b/community/vectorscan/APKBUILD index 2b4167cf97f..6fa1a8dbc64 100644 --- a/community/vectorscan/APKBUILD +++ b/community/vectorscan/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Duncan Bellamy pkgname=vectorscan pkgver=5.4.2 -pkgrel=2 +pkgrel=3 pkgdesc="High-performance regular expression matching library" url="https://www.hyperscan.io" arch="x86 x86_64 aarch64" #requires SSSE3 or Neon @@ -16,6 +16,8 @@ build() { case "${CARCH:-native}" in x86|x86_64) _march="-march=core2" ;; + aarch64) + _march="-march=armv8-a" ;; esac if [ "$CBUILD" != "$CHOST" ]; then