-
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
Cannot build project with 'panic = abort' #2726
Comments
If I add
to |
alexcrichton
added a commit
to alexcrichton/cargo
that referenced
this issue
May 23, 2016
Build scripts were apparently always compiled with the "dev" profile rather than the standard "match whatever the normal build was" profile, which meant that if dev/release disagreed on panic=abort you'd get compile errors. Seems bad! This commit fixes this by just having build scripts always compile with the same profile as libraries (for now), as this was the original intention anyway. Closes rust-lang#2726
Whoa now that's a weird bug! I believe I've fixed in #2730 though |
bors
added a commit
that referenced
this issue
May 23, 2016
…excrichton Fix build scripts and panic=abort Build scripts were apparently always compiled with the "dev" profile rather than the standard "match whatever the normal build was" profile, which meant that if dev/release disagreed on panic=abort you'd get compile errors. Seems bad! This commit fixes this by just having build scripts always compile with the same profile as libraries (for now), as this was the original intention anyway. Closes #2726
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Seems like a bug in #2687
Meta:
The text was updated successfully, but these errors were encountered: