blob: 5a93362eb4aaaf2920d7e21e2c3c53a5821652f5 [file]
use rustc_abi::Endian;
use crate::spec::base::xtensa;
use crate::spec::{Arch, Env, Os, Target, TargetMetadata, TargetOptions, cvs};
pub(crate) fn target() -> Target {
Target {
llvm_target: "xtensa-none-elf".into(),
pointer_width: 32,
data_layout: "e-m:e-p:32:32-i8:8:32-i16:16:32-i64:64-n32".into(),
arch: Arch::Xtensa,
metadata: TargetMetadata { description: None, tier: Some(3), host_tools: None, std: None },
options: TargetOptions {
endian: Endian::Little,
c_int_width: 32,
families: cvs!["unix"],
os: Os::EspIdf,
env: Env::Newlib,
vendor: "espressif".into(),
executables: true,
cpu: "esp32s2".into(),
linker: Some("xtensa-esp32s2-elf-gcc".into()),
// See https://github.com/espressif/rust-esp32-example/issues/3#issuecomment-861054477
//
// While the ESP32-S2 chip does not natively support atomics, ESP-IDF does support
// the __atomic* and __sync* compiler builtins. Setting `max_atomic_width` and `atomic_cas`
// and `atomic_cas: true` will cause the compiler to emit libcalls to these builtins. On the
// ESP32-S2, these are guaranteed to be lock-free.
//
// Support for atomics is necessary for the Rust STD library, which is supported by ESP-IDF.
max_atomic_width: Some(32),
atomic_cas: true,
..xtensa::opts()
},
}
}