Uh oh!
There was an error while loading. Please reload this page.
Fix build failure on FreeBSD, due to useless annotations. - #32188
Conversation
This stability annotation is useless src/libcore/result.rs:257 Err(#[stable(feature = "rust1", since = "1.0.0")] E)
sfackler
commented
Mar 11, 2016
Those annotations are supposed to be there. You may be building with an out of date snapshot? |
dcci
commented
Mar 11, 2016
Hmm, not really, c9629d6 |
sfackler
commented
Mar 11, 2016
It looks like the most recent snapshot hasn't been built for freebsd, which would cause this error: https://github.com/rust-lang/rust/blob/master/src/snapshots.txt#L1 |
dcci
commented
Mar 11, 2016
Thanks! I'm not terribly familiar with that -- is there something that can be done to get this moving forward? |
alexcrichton
commented
Mar 11, 2016
Ah yeah these are currently required and we just need some new FreeBSD snapshots. It should be possible to check out the snapshot revision, and then run |
dcci
commented
Mar 11, 2016
@alexcrichton OK, I'm going to run that. Should I upload them somewhere and then open another pull request, or something else? Thanks! |
alexcrichton
commented
Mar 11, 2016
Yeah feel free to just send me a link to the snapshot when it's done and I can upload it. |
This patch tries to fix a failure I hit while trying to build rust on FreeBSD.
Example:
I'm not terribly sure this is correct as this is my first contribution to rust, but still i thougth it was worth a try. Also, isn't the annotation highlighting the wrong piece? (T and E instead of #[stable ...]).
Thanks!
Davide