|
10 | 10 |
|
11 | 11 | use super::*; |
12 | 12 |
|
13 | | -pub(crate) const RUSTC_VERSION: &str = "1.87.0"; |
| 13 | +pub(crate) const RUSTC_VERSION: &str = "1.88.0"; |
14 | 14 |
|
15 | 15 | pub const ALL_BUILTINS: &[TargetInfo] = &[ |
16 | 16 | TargetInfo { |
@@ -1722,7 +1722,7 @@ pub const ALL_BUILTINS: &[TargetInfo] = &[ |
1722 | 1722 | abi: Some(Abi::abi64), |
1723 | 1723 | arch: Arch::mips64, |
1724 | 1724 | env: Some(Env::musl), |
1725 | | - vendor: Some(Vendor::unknown), |
| 1725 | + vendor: Some(Vendor::openwrt), |
1726 | 1726 | families: Families::unix, |
1727 | 1727 | pointer_width: 64, |
1728 | 1728 | endian: Endian::big, |
@@ -3224,6 +3224,19 @@ pub const ALL_BUILTINS: &[TargetInfo] = &[ |
3224 | 3224 | has_atomics: HasAtomics::atomic_8_16_32_64_ptr, |
3225 | 3225 | panic: Panic::unwind, |
3226 | 3226 | }, |
| 3227 | + TargetInfo { |
| 3228 | + triple: Triple::new_const("x86_64-lynx-lynxos178"), |
| 3229 | + os: Some(Os::lynxos178), |
| 3230 | + abi: None, |
| 3231 | + arch: Arch::x86_64, |
| 3232 | + env: None, |
| 3233 | + vendor: Some(Vendor::unknown), |
| 3234 | + families: Families::unix, |
| 3235 | + pointer_width: 64, |
| 3236 | + endian: Endian::little, |
| 3237 | + has_atomics: HasAtomics::atomic_8_16_32_64_ptr, |
| 3238 | + panic: Panic::abort, |
| 3239 | + }, |
3227 | 3240 | TargetInfo { |
3228 | 3241 | triple: Triple::new_const("x86_64-pc-cygwin"), |
3229 | 3242 | os: Some(Os::cygwin), |
@@ -3806,6 +3819,7 @@ impl super::Vendor { |
3806 | 3819 | pub const mti: Vendor = Vendor::new_const("mti"); |
3807 | 3820 | pub const nintendo: Vendor = Vendor::new_const("nintendo"); |
3808 | 3821 | pub const nvidia: Vendor = Vendor::new_const("nvidia"); |
| 3822 | + pub const openwrt: Vendor = Vendor::new_const("openwrt"); |
3809 | 3823 | pub const pc: Vendor = Vendor::new_const("pc"); |
3810 | 3824 | pub const risc0: Vendor = Vendor::new_const("risc0"); |
3811 | 3825 | pub const sony: Vendor = Vendor::new_const("sony"); |
@@ -3836,6 +3850,7 @@ impl super::Os { |
3836 | 3850 | pub const ios: Os = Os::new_const("ios"); |
3837 | 3851 | pub const l4re: Os = Os::new_const("l4re"); |
3838 | 3852 | pub const linux: Os = Os::new_const("linux"); |
| 3853 | + pub const lynxos178: Os = Os::new_const("lynxos178"); |
3839 | 3854 | pub const macos: Os = Os::new_const("macos"); |
3840 | 3855 | pub const netbsd: Os = Os::new_const("netbsd"); |
3841 | 3856 | pub const nto: Os = Os::new_const("nto"); |
|
0 commit comments