This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -110,6 +110,7 @@ case $HOST_TARGET in
110110 MIRI_TEST_TARGET=aarch64-linux-android run_tests_minimal hello integer vec panic/panic
111111 MIRI_TEST_TARGET=wasm32-wasi MIRI_NO_STD=1 run_tests_minimal no_std # supports std but miri doesn't support it
112112 MIRI_TEST_TARGET=thumbv7em-none-eabihf MIRI_NO_STD=1 run_tests_minimal no_std # no_std embedded architecture
113+ MIRI_TEST_TARGET=tests/avr.json MIRI_NO_STD=1 run_tests_minimal no_std # JSON target file
113114 ;;
114115 x86_64-apple-darwin)
115116 MIRI_TEST_TARGET=mips64-unknown-linux-gnuabi64 run_tests # big-endian architecture
Original file line number Diff line number Diff line change 1+ {
2+ "arch" : " avr" ,
3+ "cpu" : " atmega328p" ,
4+ "data-layout" : " e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8" ,
5+ "env" : " " ,
6+ "executables" : true ,
7+ "linker" : " avr-gcc" ,
8+ "linker-flavor" : " gcc" ,
9+ "linker-is-gnu" : true ,
10+ "llvm-target" : " avr-unknown-unknown" ,
11+ "os" : " unknown" ,
12+ "position-independent-executables" : false ,
13+ "exe-suffix" : " .elf" ,
14+ "eh-frame-header" : false ,
15+ "pre-link-args" : {
16+ "gcc" : [" -mmcu=atmega328p" ]
17+ },
18+ "late-link-args" : {
19+ "gcc" : [" -lgcc" ]
20+ },
21+ "target-c-int-width" : " 16" ,
22+ "target-endian" : " little" ,
23+ "target-pointer-width" : " 16" ,
24+ "vendor" : " unknown"
25+ }
You can’t perform that action at this time.
0 commit comments