Open
Description
It seems that documentation failed to build for 0.3.0:
https://docs.rs/crate/avrd/0.3.0
If you look at the build log, there's a panic with message "Read-only filesystem". I think it's docs.rs
problem. But why 0.2.0 built successfully? Is it a regression?
Activity
dylanmckay commentedon May 14, 2020
That makes sense - crate currently generates
.rs
files for the MCU cores in thebuild.rs
script ) (avrd/build.rs
Line 29 in 3e75477
The best solution here would be to adapt the
build.rs
script into a script that can be run by the crate maintainers to update the autogenerated MCU core files so that they can be added into version control permanently. This will also make crate compilation much faster.shepmaster commentedon May 18, 2020
Plenty of crates Use build scripts to generate source code, so I don’t know why this would be a problem.
schulzch commentedon Aug 9, 2020
As far as I know, only OUT_DIR is writable.