rust-embedded / cortex-m-quickstart

Template to develop bare metal applications for Cortex-M microcontrollers
791 stars 164 forks source link

No documentation for v0.3.2 #36

Closed gbip closed 5 years ago

gbip commented 6 years ago

Currently docs.rs show

The requested resource does not exist

About cortex-m-quickstart.

adamgreig commented 6 years ago

The problem is here and is an error building panic-semihosting on docs.rs (which itself doesn't have docs, same problem).

It should clear up once panic_implementation becomes stable (rust-lang/rust#44489) (and panic-semihosting is updated accordingly), but until then we might be able to hack something to stop docs.rs trying to build it...

japaric commented 6 years ago

The problem is not that the feature is unstable but that the compiler docs.rs is using is too old:

$ rustc --version rustc 1.28.0-dev (b9bf4f162 2018-06-02)

They are using a custom built compiler it seems, but it can definitively use unstable features. I don't know how often they update their compiler, but we could request a compiler update in the docs.rs issue tracker. Relevant issues: onur/docs.rs#219, onur/docs.rs#226.

korken89 commented 5 years ago

This is almost 1 year old, closing issue, reopen if needed