From 46d44aa1c887896b214d02b8fe49db05df74cc01 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Fri, 7 Oct 2022 11:35:32 +0200 Subject: [PATCH] disable bolt on arm64 --- debian/control | 6 ++++-- debian/rules | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/debian/control b/debian/control index db3ac3d7..42b3955c 100644 --- a/debian/control +++ b/debian/control @@ -810,7 +810,8 @@ Description: Multi-Level Intermediate Representation library # ------------- bolt ------------- Package: bolt-15 -Architecture: amd64 arm64 +Architecture: amd64 +# Disable on arm64 because libbolt_rt_hugify.a isn't generated Depends: ${shlibs:Depends}, ${misc:Depends}, libbolt-15-dev (= ${binary:Version}), Pre-Depends: ${misc:Pre-Depends} Description: Post-link optimizer @@ -820,7 +821,8 @@ Description: Post-link optimizer Package: libbolt-15-dev Section: libdevel -Architecture: amd64 arm64 +Architecture: amd64 +#arm64 Depends: ${shlibs:Depends}, ${misc:Depends} Description: Post-link optimizer TODO diff --git a/debian/rules b/debian/rules index 0e2f335e..0ccca717 100755 --- a/debian/rules +++ b/debian/rules @@ -268,7 +268,8 @@ ifneq (,$(filter $(DEB_HOST_ARCH),$(BINUTILS_GOLD_ARCHS))) endif endif -BOLT_ARCHS := amd64 arm64 +BOLT_ARCHS := amd64 +# arm64 ifneq (,$(filter $(DEB_HOST_ARCH),$(BOLT_ARCHS))) PROJECTS += ;bolt endif