Skip to content

Remove crashing cross-built aarch64 wheel, in favor of working native builds #110

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
PhilMiller opened this issue Jul 23, 2020 · 1 comment

Comments

@PhilMiller
Copy link

PhilMiller commented Jul 23, 2020

OS: Ubuntu 18.04.4
Architecture: aarch64, on Amazon AWS c6 instance

The wheel for aarch64 on PyPI provides a non-functioning binary:

$ pip install cmake
Collecting cmake
  Using cached cmake-3.18.0-py3-none-manylinux2014_aarch64.whl (15.1 MB)
Installing collected packages: cmake
Successfully installed cmake-3.18.0
$ which cmake
/home/ubuntu/venv-cmake/bin/cmake
$ cmake --version
$ echo $?
245

This seems to be related to the discussion on this issue

Forcing installation not to use the wheel provides a working binary:

$ pip install --no-binary :all: cmake
Collecting cmake
  Using cached cmake-3.18.0.tar.gz (28 kB)
Skipping wheel build for cmake, due to binaries being disabled for it.
Installing collected packages: cmake
    Running setup.py install for cmake ... done
Successfully installed cmake-3.18.0
$ which cmake
/home/ubuntu/venv-cmake/bin/cmake
$ cmake --version
cmake version 3.18.0

CMake suite maintained and supported by Kitware (kitware.com/cmake).

Thus, I'm asking that until the build issues are resolved, they be avoided so that users get a working result

@jcfr
Copy link
Contributor

jcfr commented Jul 23, 2020

Closing. This was addressed in #96 (comment)

@jcfr jcfr closed this as completed Jul 23, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants