-
Notifications
You must be signed in to change notification settings - Fork 206
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
Building and running Terra on Termux #619
Comments
Hey, nice. Thanks for doing this. If it builds and passes the test suite, that counts as working in my book. Some LLVM releases do require more work, because LLVM does not promise backwards compatibility between releases. However, I am a fan of the approach of "build, and if it works, ship it". LLVM does occasionally have deprecations, but in my experience it's not really worth following up on them until they cause the build to break outright. Sometimes the "replacement" features don't really work yet (as has been the case in LLVM's ongoing migration to untyped pointers). In other cases, the "replacments" get removed themselves. (E.g., we skipped the ORCv1 migration entirely because we never switched to it.) Of course, there is always the possibility of performance regressions, but I don't hold back releases for those. (First, whether any given chance is a regression or improvement depends on the given application. Second, these issues are often tricky to diagnose and follow up on, so it doesn't make sense to hold back merging (or even releases) for them.) |
Cool! Thanks for the quick response. Looking closer, the only thing that seems to be missing is adding CI pipelines for LLVM 16, but I guess I can do that in a later PR. Can you point me to some sort of guide for that, though? |
There are a couple of steps. I'm happy to do this, so you don't need to worry about it. But just FYI, here's what needs to be done:
|
Ok, merged both those PRs, so that's everything I can think of. Feel free to close this issue unless there is something else. |
Closing since I haven't heard anything, but feel free to reopen if there is anything else. |
I managed to build and run Terra on Termux1. All that was needed was:
This looks enough for me, but the LLVM 15 migration commit2 did a lot more than what I did. Is anything missing?
The text was updated successfully, but these errors were encountered: