Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

Commit 84b97e1

Browse files
committed
Fix CI
1 parent 50ab64e commit 84b97e1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.cargo/config.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,14 @@ linker = "ldproxy"
2323

2424
[target.riscv32imc-esp-espidf]
2525
linker = "ldproxy"
26-
# Necessary for riscv MCUs; see also https://github.com/ivmarkov/embuild/issues/16
27-
rustflags = ["-C", "default-linker-libraries"]
26+
# TODO: Is `["-C", "default-linker-libraries"]` still necessary? See https://github.com/ivmarkov/embuild/issues/16
2827
# Uncomment for ESP-IDF 5 and later. Don't forget to also uncomment the `ESP_IDF_VERSION = "release/v5.0"`parameter in the `[env]` section below
29-
#rustflags = ["--cfg", "espidf_time64", "-C", "default-linker-libraries"]
28+
#rustflags = ["--cfg", "espidf_time64"]
3029

3130
[target.riscv32imac-esp-espidf]
3231
linker = "ldproxy"
3332
# Uncomment for ESP-IDF 5 and later. Don't forget to also uncomment the `ESP_IDF_VERSION = "release/v5.0"`parameter in the `[env]` section below
34-
rustflags = ["--cfg", "espidf_time64", "-C", "default-linker-libraries"]
33+
#rustflags = ["--cfg", "espidf_time64"]
3534

3635
[unstable]
3736
build-std = ["std", "panic_abort"]

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ polling = { git = "https://github.com/esp-rs-compat/polling" }
1616
socket2 = { git = "https://github.com/esp-rs-compat/socket2" }
1717
#getrandom = { version = "0.2", git = "https://github.com/esp-rs-compat/getrandom.git" }
1818
#getrandom1 = { version = "0.1", git = "https://github.com/esp-rs-compat/getrandom.git", package = "getrandom", branch = "0.1" }
19+
esp-idf-sys = { git = "https://github.com/esp-rs/esp-idf-sys" }
1920

2021
[profile.release]
2122
opt-level = "s"

0 commit comments

Comments
 (0)