Open
Conversation
21b985d to
387fc30
Compare
47bcd6e to
32a1e42
Compare
Add support for cross building the following platforms: - `linux/386` - `linux/amd64` - `linux/arm/v6` - `linux/arm/v7` - `linux/arm64` - `linux/ppc64le` - `linux/s390x` To build for a different platform other than the local native platform the `qemu-user-static` package must be installed. Example to build AMD64, ARM64 and ARMv7 platforms: ``` make PLATFORM="linux/amd64 linux/arm64 linux/arm/v7" all-images ```
32a1e42 to
e8c30e6
Compare
|
Hi, are there any plans to merge this at any point? |
Member
|
Hi, yes it should be merged once ready. @mmartinv: there are a lot of changes in this PR, not all related to the cross platform build. Thanks! |
Author
|
@flashcode: As you can imagine, I forgot about this. I will try find some time to better split the PR but no promises it will be soon. After 3 years I don't think we are in a rush anyway, are we? 😄 |
|
@mmartinv since I'm probably the only one looking to use this, I'm willing to look at it instead. |
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.
Add support for cross building the following platforms:
linux/386linux/amd64linux/arm/v6linux/arm/v7linux/arm64linux/ppc64lelinux/s390xTo build for a different platform other than the local native platform the
qemu-user-staticpackage must be installed.Example to build AMD64, ARM64 and ARMv7 platforms: