Conversation
Contributor
|
Sorry, I didn't know it's this tricky. https://github.com/r-rust/faq#does-rust-support-windows-on-arm64-aarch64 |
Member
Author
|
Rust doesn't ship with std binaries for these. Somehow, this https://doc.rust-lang.org/cargo/reference/unstable.html#build-std needs to be part of the CI for these new targets. |
Member
Author
|
Status: What's missing are the appropriate headers. They must be.. somewhere. If someone wants to take over, please do! I'll give this a break for now. |
Member
Author
|
They are here: if (ARCH == "arm64") {
core.addPath(`C:\\rtools44-aarch64\\usr\\bin`);
core.addPath(`C:\\rtools44-aarch64\\aarch64-w64-mingw32.static.posix\\bin`);
}mingw variable needs to be corrected to this, when on Windows+Arm |
0df5a92 to
ca334da
Compare
Member
Author
|
Okay, while this may compile. It isn't actually installing Rtools with ARM, or anything like that yet. |
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.
Fixes #190
Current status: This is compiling, but it is not producing the right result as none of the machine are Windows ARM machines, and thus, don't have the right Rtools (with the right Rust) installed.