Skip to content

Commit

Permalink
Drop i686 support
Browse files Browse the repository at this point in the history
  • Loading branch information
kazarmy committed Apr 18, 2024
1 parent 3661748 commit c69fe0c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cibw_before_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ if command -v apt; then
elif command -v apk; then
apk update && apk add clang-dev
elif command -v yum; then
# yum -y install centos-release-scl llvm-toolset-7.0 llvm-toolset-7.0-llvm-devel
yum -y install llvm-toolset-7.0 llvm-toolset-7.0-llvm-devel
# source scl_source enable llvm-toolset-7.0 || true
yum -y install centos-release-scl
source scl_source enable llvm-toolset-7.0 || true
fi

pushd rizin
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ setup = ['-Dwheel=true']
build-verbosity = 3
before-all = "bash {project}/cibw_before_all.sh"
manylinux-x86_64-image = "manylinux2014"
manylinux-i686-image = "manylinux2014"
skip = "pp*"

[tool.cibuildwheel.linux]
environment = { PATH="/opt/rh/llvm-toolset-7.0/root/usr/bin:/opt/rh/llvm-toolset-7.0/root/usr/sbin:/opt/rh/devtoolset-10/root/usr/bin:$PATH", LD_LIBRARY_PATH="/opt/rh/llvm-toolset-7.0/root/usr/lib64:/opt/rh/devtoolset-10/root/usr/lib64:/opt/rh/devtoolset-10/root/usr/lib:/opt/rh/devtoolset-10/root/usr/lib64/dyninst:/opt/rh/devtoolset-10/root/usr/lib/dyninst:$LD_LIBRARY_PATH" }
archs = ["x86_64"]

[tool.cibuildwheel.windows]
environment = { CMAKE_PREFIX_PATH="C:\\rizin" }
Expand Down

0 comments on commit c69fe0c

Please sign in to comment.