From 080c451fc95bd744d68513699afa4de8c159eccc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Fri, 26 Apr 2024 11:32:24 +0200 Subject: [PATCH] Fix typo in Makefile for mac arch detection --- platform.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform.mk b/platform.mk index 1856b9cc98..2e5823c3aa 100644 --- a/platform.mk +++ b/platform.mk @@ -7,7 +7,7 @@ $(info Detected Architecture: $(ARCH)) # Define architecture mappings for Linux LINUX_ARCH_MAP := x86_64=x86_64-unknown-linux-gnu aarch64=aarch64-unknown-linux-gnu -DARWIN_ARCH_MAP := x86_64=x86_64-apple-darwin arm64=arm64-apple-darwin +DARWIN_ARCH_MAP := x86_64=x86_64-apple-darwin arm64=aarch64-apple-darwin # Function to adjust architecture based on OS define adjust_arch