--- adm/templates/env.install.sh.in.orig 2025-05-20 05:17:10 +++ adm/templates/env.install.sh.in 2025-07-19 04:32:13 @@ -34,7 +34,7 @@ # ----- Set path to 3rd party and OCCT libraries ----- anArch=`uname -m` -if [ "$anArch" != "x86_64" ] && [ "$anArch" != "ia64" ] && [ "$anArch" != "aarch64"]; then +if [ "$anArch" != "x86_64" ] && [ "$anArch" != "ia64" ] && [ "$anArch" != "aarch64" ] && [ "$anArch" != "arm64" ]; then export ARCH="32"; else export ARCH="64"; @@ -43,7 +43,6 @@ aSystem=`uname -s` if [ "$aSystem" == "Darwin" ]; then export WOKSTATION="mac"; - export ARCH="64"; else export WOKSTATION="lin"; fi --- adm/templates/env.sh.orig 2025-05-20 05:17:10 +++ adm/templates/env.sh 2025-07-19 04:32:13 @@ -60,7 +60,7 @@ # ----- Setup Environment Variables ----- anArch=`uname -m` -if [ "$anArch" != "x86_64" ] && [ "$anArch" != "ia64" ]; then +if [ "$anArch" != "x86_64" ] && [ "$anArch" != "ia64" ] && [ "$anArch" != "aarch64" ] && [ "$anArch" != "arm64" ]; then export ARCH="32"; else export ARCH="64"; @@ -68,7 +68,6 @@ if [ "$aSystem" == "Darwin" ]; then export WOKSTATION="mac"; - export ARCH="64"; else export WOKSTATION="lin"; fi