From 2c550216a933662932e7e5a74d39744baae12510 Mon Sep 17 00:00:00 2001 From: Shane Snyder Date: Fri, 26 Apr 2024 08:49:14 -0500 Subject: [PATCH] make sure to install libtool on macos [wheel build] --- .github/workflows/main_ci.yml | 1 + darshan-util/pydarshan/pyproject.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/main_ci.yml b/.github/workflows/main_ci.yml index 892f53dfd..a193cc685 100644 --- a/.github/workflows/main_ci.yml +++ b/.github/workflows/main_ci.yml @@ -37,6 +37,7 @@ jobs: name: Install MacOS deps run: | brew install automake + brew install libtool - name: Install darshan-util run: | mkdir darshan_install diff --git a/darshan-util/pydarshan/pyproject.toml b/darshan-util/pydarshan/pyproject.toml index 9d6abc187..cba614c3e 100644 --- a/darshan-util/pydarshan/pyproject.toml +++ b/darshan-util/pydarshan/pyproject.toml @@ -98,6 +98,7 @@ repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel}" [tool.cibuildwheel.macos] before-all = [ "brew install automake", + "brew install libtool", "brew install openblas", "brew install lapack", "git submodule update --init",