-
Notifications
You must be signed in to change notification settings - Fork 378
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
Add support for CROSS_CONFIG
environment var
#597
Conversation
is this a regression in libc? can't see that msrv has been bumped for libc. edit: #549 (comment) |
I can't imagine this change introduced that. What would be required to have this merged? |
You can safely bump the MSRV of this binary to 1.47 here https://github.com/rust-embedded/cross/blob/2b2a01220c73ae517129019d436d382412d1928b/azure-pipelines.yml#L17 (and in README) The regression is in libc, I've reported it upstream rust-lang/libc#2436 |
Would that same issue be related to this error?
|
That seems to be There is a suggested fix in that issue, not certain it works though |
Seems like folks are commenting out the target. Or maybe I missed the suggested fix. What is it? |
@Emilgardis seems like the work-around didn't work? |
@Emilgardis do you have some time to take another look at this? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
can merge now since CI is crippled :)
bors r+
597: Add support for `CROSS_CONFIG` environment var r=Emilgardis a=UebelAndre This allows for the use of a `CROSS_CONFIG` environment variable to explicitly set the path to a `Cross.toml` file to use for builds. Co-authored-by: UebelAndre <[email protected]>
@Emilgardis does the merge work? I don't see the change on |
wierd bors cancel bors r+ |
Build succeeded: |
This allows for the use of a
CROSS_CONFIG
environment variable to explicitly set the path to aCross.toml
file to use for builds.