Akos Vandra-Meyer
Akos Vandra-Meyer
I'll try esp IDF sys master tomorrow. I did have an issue with time_t not being 64bits, but adding the flag did not help, so wound up forking that too,...
Yeah that fixed it thanks! How can I invoke tools such as otatool though?
or idf itself?
Nuking the .embuild fixed the issue, except the TIME64 stuff.
workaround for the time64 stuff: Manually edit `~/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/Cargo.toml` to include latest libc: ``` libc = { git = "https://github.com/rust-lang/libc.git", default-features = false, features = ['rustc-dep-of-std'] } ``` I also updated...
Adding `libc = { git = "https://github.com/rust-lang/libc.git" }` to cargo patch.crates-io does not seem to work (on latest nightly, 09-30), but I think it should, since https://github.com/rust-lang/libc/pull/2913 has been merged...
@ivmarkov , can you link the upstream change that was necessary for this? I'm curious as to what was necessary besides https://github.com/rust-lang/libc/pull/2913
No and yes :) #136 adds the https server itself, and this pr extends that with support for sni. This pr is actually based on that pr, and is a...
rebased on the merge https server. It fixes a few issues with build on idf master as well.
Repro: - check out esp-idf in a separate directory - add ESP_IDF= - cargo build - change something in esp-idf - cargo build Expect to rebuild esp-idf-sys (and esp-idf), but...