-
Notifications
You must be signed in to change notification settings - Fork 138
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
Build native launcher for linux aarch64 #1703
Conversation
4fc6e3d
to
3a0bf64
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you try manually running the integration tests on a Linux/ARM64 machine? Just so that we have an idea if it works ok in most cases, or if it's just broken there?
I used generated launcher and run some tests such as( |
3a0bf64
to
9686966
Compare
Doesn't work for me, please see #1714 |
This binary does not work for all aarch64 kernels out there. Most of the aarch64 Linux kernel will have a page size of 4k, which this binary is compatible with, but if a kernel runs another page size like 64k or, like in my case, 16k, this binary will not work. |
So this QEMU thing is quite slow, seems like James Ward came up with a faster approach: https://twitter.com/_JamesWard/status/1613201502469750785 (I didn't read it, just posting so you are aware and might like it) |
Thanks for the suggestions. I did a slightly different approach, used an actual runner that scala-cli |
No description provided.