-
-
Notifications
You must be signed in to change notification settings - Fork 30
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
cargo-xwin ignores rustflags from cargo config file #36
Labels
enhancement
New feature or request
Comments
We don't parse Cargo config files at the moment, it'd be nice to get that from |
Thanks a lot for a quick fix! |
Note that there is no support for |
This is now implemented in #39 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have the following in the
<project>/.cargo/config.toml
file:[target.x86_64-pc-windows-msvc]
rustflags = "-C target-feature=+crt-static"
This seems to be ignored by
cargo xwin build
command. When setting it through env variable it works fine:RUSTFLAGS="-C target-feature=+crt-static" cargo xwin build --target=x86_64-pc-windows-msvc
But that's not ideal.
The text was updated successfully, but these errors were encountered: