Replies: 1 comment 5 replies
-
I'm not an expert of compiling on macOS, but log explicitly says that part of code is x86-64. Also, I see that linking contains
|
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We are in the process of generating wheels for the Fortran Package Manager (fpm: https://github.com/fortran-lang/fpm).
The project is written in Fortran with a bit of C, so we were hoping to use
cmake
,scikit-build
andcibuildwheel
since integration between the 3 is quite seamless.However, the MacOS arm64 build has been causing us grief (see workflow log: https://github.com/awvwgk/fpm-on-wheels/actions/runs/4535252232/jobs/7990474203 and the full cmake project on https://github.com/awvwgk/fpm-on-wheels/tree/build/cmake). Building the
bdist_wheel
directly (on an arm mac) withpython3 setup.py bdist_wheel
works fine, are we missing something?Also, since we don't actually have any Python in our code it would be ideal if we built wheels without any mention to the Python ABI i.e.
py3-none-...
do you know if that is easily doable withcibuildwheel
(and/orscikit-build
)?Thanks for all the great work you've been doing on
cibuildwheel
and friends.Beta Was this translation helpful? Give feedback.
All reactions