From 90f49684e996caa7ef7e7de77e644749305d45e5 Mon Sep 17 00:00:00 2001 From: Adam Stephens <2071575+adamcstephens@users.noreply.github.com> Date: Fri, 30 Apr 2021 12:32:20 -0700 Subject: [PATCH] add armv7/aarch64 support to installer (#198) --- install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install.sh b/install.sh index 279d497..46f7054 100755 --- a/install.sh +++ b/install.sh @@ -33,6 +33,9 @@ install() { _cputype="x86_64" _clibtype="musl" ;; + armv7 | aarch64) + _clibtype="musl" + ;; *) warning "No binaries are available for your CPU architecture ($_cputype)" _clibtype="gnu"