Skip to content

Commit

Permalink
Install clang/llvm on manylinux2014 (yum-based)
Browse files Browse the repository at this point in the history
  • Loading branch information
ret2libc committed Aug 2, 2023
1 parent 438f65e commit 2466fb5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cibw_before_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ if command -v apt; then
apt update && apt install --assume-yes libclang-dev clang llvm
elif command -v apk; then
apk update && apk add clang-dev
elif command -v yum; then
yum install -y clang llvm clang-devel
fi

pushd rizin
Expand All @@ -23,8 +25,6 @@ fi
meson install -C build
popd

if command -v apt; then
if [ ! -e dist/*.tar.gz ] ; then
python3 -m build --sdist
fi
if [ ! -e dist/*.tar.gz ] ; then
python3 -m build --sdist
fi

0 comments on commit 2466fb5

Please sign in to comment.