-
Notifications
You must be signed in to change notification settings - Fork 45
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
Specifying build target #23
Comments
@ethindp Have you found any way around this? Does anyone know of a workaround (either to apply manually, or that can be added to |
I ran into this problem recently, I have a project setup which targets an embedded device with a specific platform. Under windows I had to use the -o option to see the compile fail message I suspect it might be related to |
I also stumbled on this problem. You can solve it by using unstable |
The just released version 0.23.0 avoids building the project in the current working directory (instead standing inside of the generated package), so should fix this. Let me know if any problem remains! |
I'm building an OS kernel and use rust-script for some build tasks. However, cargo's config.toml file is still used for the script, and that TOML file contains actions for building parts of the rust standard library (core, alloc, ...). (This is a known issue for cargo.) Is there a way of getting around this? I'm using cargo-make, and I'd explicitly like the build script I use to not be influenced by anything in
.cargo/config.toml
.The text was updated successfully, but these errors were encountered: