From dceb35782ef7d2ea1a949dd99d38c060fafb8336 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Mon, 10 Nov 2025 11:17:24 +0100 Subject: [PATCH] Add platform tag for linuxarm64 in Makefile #7325 --- src/ifcopenshell-python/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ifcopenshell-python/Makefile b/src/ifcopenshell-python/Makefile index 0810ad0181..c3565072b9 100644 --- a/src/ifcopenshell-python/Makefile +++ b/src/ifcopenshell-python/Makefile @@ -55,6 +55,9 @@ endif ifeq ($(PLATFORM), linux64) PLATFORMTAG:=manylinux_2_31_x86_64 endif +ifeq ($(PLATFORM), linuxarm64) +PLATFORMTAG:=manylinux_2_31_aarch64 +endif ifeq ($(PLATFORM), macos64) PLATFORMTAG:=macosx_10_15_x86_64 endif