Fill out AVR target metadata
This will make `-Zbuild-std` automatically build the right crates, notably not building `std` by default, which will both be useful for users and also fix the build for https://does-it-build.noratrieb.dev.
This commit is contained in:
parent
e2c96cc06b
commit
9ccaf080cb
1 changed files with 3 additions and 3 deletions
|
|
@ -5,9 +5,9 @@ pub(crate) fn target() -> Target {
|
|||
arch: "avr".into(),
|
||||
metadata: crate::spec::TargetMetadata {
|
||||
description: None,
|
||||
tier: None,
|
||||
host_tools: None,
|
||||
std: None,
|
||||
tier: Some(3),
|
||||
host_tools: Some(false),
|
||||
std: Some(false),
|
||||
},
|
||||
data_layout: "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8:16-a:8".into(),
|
||||
llvm_target: "avr-unknown-unknown".into(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue