-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Possible regression bug in workspaces handling #3698
Comments
Do you mean |
@matklad yep, clarified that - thanks! It's |
Yes, it works! Thanks! :) |
Ok, thanks for checking! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cargo/rustc behavior has changed from 1.14 to 1.15 when building libraries within workspaces.
E.g. here's the output for 1.14:
And there's also
libsafe_app.so
in../target/release
.Now, after I switch my toolchain to 1.15 in rustup, a hash is appended to output file names:
And, more importantly, there's nothing in the
../target/release/
directory.At the same time it still works correctly for non-workspaced projects and I can find the library file copied to the
target/release/
dir.This breaks continuous integration scripts on 1.15 for projects that use workspaces.
The text was updated successfully, but these errors were encountered: