-
Notifications
You must be signed in to change notification settings - Fork 299
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
Does not support Apple Silicon #465
Comments
Any chance of getting this fixed? Intel macs are getting closer and closer to EOLed for support, and with that usually comes the end of Rosetta. |
I think Rosetta will be around for many years, the problem is ( seems to be ) the assembly code in asm.S. It also blocked me from running this with WASM. Since assembly programming is a long lost art, my guess would be to tell ChatGPT to translate it ( unlikely ) or to implement #define NEEDARMCONTEXT 1 in C. @fxcoudert @shayneoneill Just noticed in the original post the build is entering in the #ifdef NEEDPOWERCONTEXT instead of the #ifdef NEEDARMCONTEXT. If you can make it enter the ARM part perhaps there is no problem with the code itself since it's 32bit ARM, I don't know for sure but ARM64 should support 32bit registers? |
I thought Apple finally got ucontext working. If so, we can just set the ifdef for that. |
There is an IoWASM project: https://github.com/stevedekorte/ioWasm And an online REPL demo that uses it: https://iolanguage.org/repl/index.html Would be great to see some bindings into JS and the DOM. |
@PedroBatista Perhaps, but the original Rosetta (for running PowerPC apps on Intel macs) really only was around for about 4-5 years, and we're at year 3 with Rosetta2. So maybe a couple of more years? Its a bit of breathing room, but not much. Theres still a fair few legacy Intel macs out there, and Apple for all its faults, is likely not in a hurry to go kicking its legacy customers out of its software distribution pipelines. But apple does have form for this sort of deprecation too. That said, Apple will likely give some deprecation notice a version or two of macos before yeeting it. |
I'd happy offer a bounty (say $200?) for anyone to do this. I'd do it myself but I'm busy with another project and haven't touched XCode in ages. |
Compilation on ARM macOS (aka Apple Silicon) leads to a build failure:
The text was updated successfully, but these errors were encountered: