slint/examples/mcu-board-support/esp32_s3_box/cargo-config.toml

17 lines
389 B
TOML

# Copyright © SixtyFPS GmbH <info@slint.dev>
# SPDX-License-Identifier: MIT
[target.xtensa-esp32s3-none-elf]
runner = "espflash flash --monitor"
rustflags = [
"-C", "force-frame-pointers",
"-C", "link-arg=-nostartfiles",
"-C", "link-arg=-Wl,-Tlinkall.x",
"-C", "target-feature=-fp",
]
[build]
target = "xtensa-esp32s3-none-elf"
[unstable]
build-std = ["core", "alloc"]