rust-build
rust-build copied to clipboard
Installation tools and workflows for deploying/building Rust fork esp-rs/rust with Xtensa and RISC-V support
The variable export script currently has this content more or less: ```shell export PATH="/home/svenstaro/.espressif/tools/xtensa-esp32-elf-clang/esp-13.0.0-20211203-x86_64-unknown-linux-gnu/bin/:$PATH" export LIBCLANG_PATH="/home/svenstaro/.espressif/tools/xtensa-esp32-elf-clang/esp-13.0.0-20211203-x86_64-unknown-linux-gnu/lib/" export PIP_USER=no ``` This will currently make `build.rs`-driven cross-compilation impossible since the `CC` and...
ESP-IDF v5.0 should become available mid-summer 2022. Make sure that build works well with Rust.
The official builds of cargo for MacOS do not have runtime dependencies on libssl and libcrypto. However, the esp build does. This is like due to not building cargo with...
Hello, I've found a strange error and I'm not sure what the problem might be. I've been trying to use ESP32 + SCD41 with no luck. I tracked down the...
Build with activated ESP-IDF environment with 5.1 is failing: ``` --- stderr Build configuration: BuildConfig { esp_idf_tools_install_dir: None, esp_idf_sdkconfig: None, esp_idf_sdkconfig_defaults: None, mcu: None, native: NativeConfig { esp_idf_version: Some( Tag(...
Build for C3 is failing with latest nightly. It would be very useful to be explicit about which version of nightly is working. The last working version known to me...
_Not sure if this is the right place to post this (seems related to the build scripts from this repository and not necessarily specific to the hello world template)_ Trying...
These need to be available so that we can tell bindgen which sysroot to use, as bindgen will otherwise use the system include files[^0] to generate bindings. [^0]: https://github.com/rust-lang/rust-bindgen/issues/1229