Uh oh!
There was an error while loading. Please reload this page.
FilesTimes support does not build for ESP-IDF - #100119
Conversation
rust-highfive
commented
Aug 3, 2022
(rust-highfive has picked a reviewer for you, use r? to override) |
Uh oh!
There was an error while loading. Please reload this page.
joshtriplett
commented
Aug 3, 2022
@ivmarkov r=me with the suggestion applied. |
rustbot
commented
Aug 3, 2022
Hey! It looks like you've submitted a new PR for the library teams! If this PR contains changes to any Examples of
|
joshtriplett
commented
Aug 3, 2022
@bors r+ rollup |
bors
commented
Aug 3, 2022
FilesTimes support does not build for ESP-IDF Commit rust-lang@1f5d8d4 broke STD for `target_os = "espidf"`. In future, we might come up with something more sophisticated (as in using the `utime` function which *is* available on the ESP-IDF platform), but for now we are treating ESP-IDF just like `Redox` in that the new API fails at runtime. Most important for us ATM is to restore successful compilation of STD on our platform.
…iaskrgr Rollup of 9 pull requests Successful merges: - rust-lang#98877 (Set llvm configs when building lld) - rust-lang#100068 (Fix backwards-compatibility check for tests with `+whole-archive`) - rust-lang#100083 (rustdoc: use a more compact encoding for source-files.js) - rust-lang#100102 (Fix typo) - rust-lang#100104 (Remove more Clean trait implementations) - rust-lang#100105 (Add regression test for rust-lang#90871) - rust-lang#100107 (fix trailing whitespace in error message) - rust-lang#100111 (Provide suggestion on missing `let` in binding statement) - rust-lang#100119 (FilesTimes support does not build for ESP-IDF) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Commit 1f5d8d4 broke STD for
target_os = "espidf".In future, we might come up with something more sophisticated (as in using the
utimefunction which is available on the ESP-IDF platform), but for now we are treating ESP-IDF just likeRedoxin that the new API fails at runtime. Most important for us ATM is to restore successful compilation of STD on our platform.