Build: Changes for make deps to work on Linux arm64 again

This is not an officially supported platform, but it was working before
so might as well keep it up to date.

* Tweak logic for various BLENDER_PLATFORM_ARM checks
* Use linux_arm64 name for folders, matching Windows and macOS
* CUDA is enabled, SYCL and HIP are not
* Tested to work on Rocky Linux 8
This commit is contained in:
Brecht Van Lommel
2024-07-12 12:01:29 +02:00
parent f068b6c6d4
commit b74dfa8cfc
10 changed files with 59 additions and 33 deletions

View File

@@ -161,6 +161,9 @@ CPU:=$(shell uname -m)
ifeq ($(CPU),x86_64)
CPU:=x64
endif
ifeq ($(CPU),aarch64)
CPU:=arm64
endif
ifeq ($(OS_NCASE),darwin)
OS_LIBDIR:=macos
else