File tree Expand file tree Collapse file tree 1 file changed +25
-13
lines changed Expand file tree Collapse file tree 1 file changed +25
-13
lines changed Original file line number Diff line number Diff line change @@ -1108,14 +1108,26 @@ pub(crate) const LIST: &[(&str, TargetInfo<'static>)] = &[
11081108 llvm_target : "wasm32-unknown-emscripten" ,
11091109 } ,
11101110 ) ,
1111+ (
1112+ "avr-none" ,
1113+ TargetInfo {
1114+ full_arch : "avr" ,
1115+ arch : "avr" ,
1116+ vendor : "unknown" ,
1117+ os : "none" ,
1118+ env : "" ,
1119+ abi : "" ,
1120+ llvm_target : "avr-unknown-unknown" ,
1121+ } ,
1122+ ) ,
11111123 (
11121124 "avr-unknown-gnu-atmega328" ,
11131125 TargetInfo {
11141126 full_arch : "avr" ,
11151127 arch : "avr" ,
11161128 vendor : "unknown" ,
11171129 os : "none" ,
1118- env : "gnu " ,
1130+ env : "" ,
11191131 abi : "" ,
11201132 llvm_target : "avr-unknown-unknown" ,
11211133 } ,
@@ -1204,18 +1216,6 @@ pub(crate) const LIST: &[(&str, TargetInfo<'static>)] = &[
12041216 llvm_target : "i386-apple-ios-simulator" ,
12051217 } ,
12061218 ) ,
1207- (
1208- "i586-pc-nto-qnx700" ,
1209- TargetInfo {
1210- full_arch : "i586" ,
1211- arch : "x86" ,
1212- vendor : "pc" ,
1213- os : "nto" ,
1214- env : "nto70" ,
1215- abi : "" ,
1216- llvm_target : "i586-pc-unknown" ,
1217- } ,
1218- ) ,
12191219 (
12201220 "i586-pc-windows-msvc" ,
12211221 TargetInfo {
@@ -1300,6 +1300,18 @@ pub(crate) const LIST: &[(&str, TargetInfo<'static>)] = &[
13001300 llvm_target : "i686-linux-android" ,
13011301 } ,
13021302 ) ,
1303+ (
1304+ "i686-pc-nto-qnx700" ,
1305+ TargetInfo {
1306+ full_arch : "i686" ,
1307+ arch : "x86" ,
1308+ vendor : "pc" ,
1309+ os : "nto" ,
1310+ env : "nto70" ,
1311+ abi : "" ,
1312+ llvm_target : "i586-pc-unknown" ,
1313+ } ,
1314+ ) ,
13031315 (
13041316 "i686-pc-windows-gnu" ,
13051317 TargetInfo {
You can’t perform that action at this time.
0 commit comments