Files
dependencies/setup.sh
Adeeb Shihadeh 62d18088cc build linux wheels with manylinux_2_28 for wider glibc compat (#18)
* build linux wheels inside manylinux_2_28 for glibc 2.28 compat

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* add perl-IPC-Cmd for openssl build in manylinux

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-24 17:44:07 -08:00

11 lines
326 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
if [ "$(uname)" = "Darwin" ]; then
brew install nasm pkg-config
elif command -v dnf &>/dev/null; then
dnf install -y nasm cmake gcc-c++ pkgconfig git perl-IPC-Cmd
elif command -v apt-get &>/dev/null; then
sudo apt-get update && sudo apt-get install -y nasm cmake g++ pkg-config
fi