From 3ad4b732d45cdc400154f227c18781885fe49b71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Oliveirinha?= Date: Mon, 22 Jan 2024 11:23:14 +0000 Subject: [PATCH] TUN-8176: Support ARM platforms that don't have an FPU or have it enabled in kernel --- build-packages.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-packages.sh b/build-packages.sh index e7aa5cd3..9570dab0 100755 --- a/build-packages.sh +++ b/build-packages.sh @@ -16,10 +16,10 @@ for arch in ${linuxArchs[@]}; do unset TARGET_ARM export TARGET_ARCH=$arch - ## Support for armv6 builds + ## Support for arm platforms without hardware FPU enabled if [[ $arch == arm ]] ; then export TARGET_ARCH=arm - export TARGET_ARM=6 + export TARGET_ARM=5 fi ## Support for armhf builds