From f89cc96b0ca71d80351cc5c0ee4637f02a47d325 Mon Sep 17 00:00:00 2001 From: "Adam J. Stewart" Date: Wed, 23 Nov 2022 10:27:44 -0600 Subject: libelf: fix build on macOS arm64 (#34036) --- var/spack/repos/builtin/packages/libelf/package.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/var/spack/repos/builtin/packages/libelf/package.py b/var/spack/repos/builtin/packages/libelf/package.py index fb3ec7c677..b581c8306d 100644 --- a/var/spack/repos/builtin/packages/libelf/package.py +++ b/var/spack/repos/builtin/packages/libelf/package.py @@ -29,8 +29,23 @@ class Libelf(AutotoolsPackage): provides("elf@0") + # configure: error: neither int nor long is 32-bit + depends_on("automake", when="platform=darwin target=aarch64:", type="build") + depends_on("autoconf", when="platform=darwin target=aarch64:", type="build") + depends_on("libtool", when="platform=darwin target=aarch64:", type="build") + depends_on("m4", when="platform=darwin target=aarch64:", type="build") + + @property + def force_autoreconf(self): + return self.spec.satisfies("platform=darwin target=aarch64:") + def configure_args(self): - args = ["--enable-shared", "--disable-dependency-tracking", "--disable-debug"] + args = ["--enable-shared", "--disable-debug"] + + # config.sub: invalid option -apple-darwin21.6.0 + if self.spec.satisfies("platform=darwin target=aarch64:"): + args.append("--build=aarch64-apple-darwin") + return args def install(self, spec, prefix): -- cgit v1.2.3-60-g2f50