Add cross-compilation for Mac and Linux ARM systems#13
Closed
alandavidreyes wants to merge 2 commits into
Closed
Conversation
This change passes the relevant "-arch" flags into Clang to allow cross compiling of the underlying LMDB library using Clang. This creates binaries for Apple Silicon and ARM-based Linux processors (such as EC2's Graviton) that can be used by the parent library.
Author
|
This PR follows a similar pattern to #9. That PR seems to have stalled at the exploration of using QEMU to emulate the different architectures involved (using the run-on-arch-action action); if that approach is still desirable, I can make those changes here. |
Some Linux/BSD systems use aarch64, others use arm64 to refer to the underlying ARM architecture. The previous version of this branch referred to that as aarch64. Given that there is some debate as to what that architecture is called, it seems nicer to use the naming convention that matches that used by Mac systems.
Member
|
Closing this ticket as lmdbjava/lmdbjava#217 has provided a Zig-based cross-compilation in the Java module product. This in turn means the LmdbJava Native project is no longer required and will be archived. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This change passes the relevant "-arch" flags into Clang to allow cross compiling of the underlying LMDB library using Clang. This creates binaries for Apple Silicon and ARM-based Linux processors (such as EC2's Graviton) that can be used by the parent library.
This is an attempt to solve the issue raised in #10.