Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
matteriot committed Aug 2, 2023
1 parent 28b7eb5 commit baa4519
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,23 @@ target = "riscv32imc-esp-espidf"
# target = "riscv32imac-esp-espidf"
#target = "x86_64-apple-darwin"

# [target.xtensa-esp32-espidf]
# [target.xtensa-esp32s2-espidf]
[target.xtensa-esp32-espidf]
linker = "ldproxy"
runner = "espflash flash --monitor --no-stub"
rustflags = [ "--cfg", "espidf_time64"]
[target.xtensa-esp32s2-espidf]
linker = "ldproxy"
runner = "espflash flash --monitor --no-stub"
rustflags = [ "--cfg", "espidf_time64"]
[target.xtensa-esp32s3-espidf]
linker = "ldproxy"
runner = "espflash flash --monitor --no-stub"
rustflags = [ "--cfg", "espidf_time64"]
[target.riscv32imc-esp-espidf]
# [target.riscv32imac-esp-espidf]
linker = "ldproxy"
runner = "espflash flash --monitor --no-stub"
rustflags = ["--cfg", "espidf_time64", "-C", "default-linker-libraries"]
[target.riscv32imac-esp-espidf]
linker = "ldproxy"
runner = "espflash flash --monitor --no-stub"
rustflags = ["--cfg", "espidf_time64", "-C", "default-linker-libraries"]
Expand Down

0 comments on commit baa4519

Please sign in to comment.