Add aarch64_be-unknown-linux-gnu target#1707
Merged
Merged
Conversation
6609256 to
743fdd4
Compare
Member
|
/ci try -t aarch64_be-unknown-linux-gnu |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Member
|
Did you forget to add the dockerfile? :D |
Contributor
Author
I forgot to write it, because I didn't know how this part of cross works :) |
Member
|
the dockerfile is essential for providing the cross-compilation tools needed for C (and other) deps. Just pure rust will work fine withut cross |
1c856cd to
955b2bf
Compare
Member
|
/ci try -t aarch64_be-unknown-linux-gnu |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Emilgardis
reviewed
Sep 26, 2025
955b2bf to
3d5ab8c
Compare
Member
|
/ci try -t aarch64_be-unknown-linux-gnu |
This comment has been minimized.
This comment has been minimized.
Try run for comment
Successful Jobs |
Emilgardis
approved these changes
Sep 27, 2025
Comment on lines
+28
to
+46
| @@ -42,6 +43,7 @@ if_centos install_packages \ | |||
| pkgconfig | |||
|
|
|||
| if_ubuntu install_packages \ | |||
| adduser \ | |||
Contributor
Author
There was a problem hiding this comment.
Both bzip2 and adduser were necessary during the build. I'm rerunning it now to give a more detailed answer
Contributor
Author
There was a problem hiding this comment.
Both of them are due to crosstool-ng.sh, so I'm moving the installations there, and documenting the reasons in the commit message
Two new packages are installed in crosstool-ng.sh because they aren't preinstalled in the Ubuntu 24.04 base image: - adduser is directly invoked in the script - bzip2 is needed while building crosstool-ng
3d5ab8c to
a5c1c64
Compare
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 PR adds support for the aarch64_be-unknown-linux-gnu target. It uses crosstool-ng because Debian/Ubuntu does not provide cross-compilers for aarch64_be.