You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cothread claims to have support for arm64 architecture, denoted by the switch-arm64.c file. However, as noted in the last commit made, it does not actually work at runtime. During testing of p4p on the new GitHub OsX runners, which are all now arm64, we see a Bus Error:
/Users/runner/work/_temp/28281c48-3576-478b-b140-78e8b699ad51.sh: line 9: 3925 Bus error: 10 python -m nose2 -v p4p
In an ideal world we should fix the ARM64 code to allow use on modern MacOS systems. An alternative is to explicitly fail a compilation on a MacOS ARM platform (but leave it working for e.g. Rasberry Pi, which is the platform this code was originally written for).
Testing either of these fixes should be straightforward by using GitHub's macos-latest runner.
The text was updated successfully, but these errors were encountered:
AlexanderWells-diamond
changed the title
Cothread builds but fails on MacOS Arm64 platforms
Cothread builds but fails at runtime on MacOS Arm64 platforms
Aug 8, 2024
However, following this, the import fails (runtime failure). If instead:
pip3.11 install --force cothread -> the following:
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: command '/usr/bin/clang' failed with exit code 1
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for cothread
Failed to build cothread
ERROR: ERROR: Failed to build installable wheels for some pyproject.toml based projects (cothread)
It seems to complain as following on some (ld) illegal text-relocation in 'action_entry'+0x14 (../cothread_9b3efff422134250bc70b91cfdda0b17/build/temp.macosx-14.0-arm64-cpython-311/context/switch.o) to 'action_entry'
Cothread claims to have support for arm64 architecture, denoted by the switch-arm64.c file. However, as noted in the last commit made, it does not actually work at runtime. During testing of p4p on the new GitHub OsX runners, which are all now arm64, we see a Bus Error:
In an ideal world we should fix the ARM64 code to allow use on modern MacOS systems. An alternative is to explicitly fail a compilation on a MacOS ARM platform (but leave it working for e.g. Rasberry Pi, which is the platform this code was originally written for).
Testing either of these fixes should be straightforward by using GitHub's
macos-latest
runner.The text was updated successfully, but these errors were encountered: