diff options
| author | 2024-02-28 12:08:24 +0800 | |
|---|---|---|
| committer | 2024-02-28 12:08:24 +0800 | |
| commit | ab026b7e0ba3baa1ffab7603e7f5fa47864427f7 (patch) | |
| tree | 5e5000e98ada59a499d7e4138039e6158b5dc0c6 /target/debug/build/target-lexicon-52a959f5a5e62d0c/out/host.rs | |
| parent | 45ded34e5906b3c978e70db8339eba6f6a362bd2 (diff) | |
| download | TRPGNivis-ab026b7e0ba3baa1ffab7603e7f5fa47864427f7.tar.gz TRPGNivis-ab026b7e0ba3baa1ffab7603e7f5fa47864427f7.zip | |
fix(bones): delete target directory and add it into the gitignore list
Diffstat (limited to 'target/debug/build/target-lexicon-52a959f5a5e62d0c/out/host.rs')
| -rw-r--r-- | target/debug/build/target-lexicon-52a959f5a5e62d0c/out/host.rs | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/target/debug/build/target-lexicon-52a959f5a5e62d0c/out/host.rs b/target/debug/build/target-lexicon-52a959f5a5e62d0c/out/host.rs deleted file mode 100644 index b511c2e..0000000 --- a/target/debug/build/target-lexicon-52a959f5a5e62d0c/out/host.rs +++ /dev/null @@ -1,74 +0,0 @@ - -#[allow(unused_imports)] -use crate::Aarch64Architecture::*; -#[allow(unused_imports)] -use crate::ArmArchitecture::*; -#[allow(unused_imports)] -use crate::CustomVendor; -#[allow(unused_imports)] -use crate::Mips32Architecture::*; -#[allow(unused_imports)] -use crate::Mips64Architecture::*; -#[allow(unused_imports)] -use crate::Riscv32Architecture::*; -#[allow(unused_imports)] -use crate::Riscv64Architecture::*; -#[allow(unused_imports)] -use crate::X86_32Architecture::*; - -/// The `Triple` of the current host. -pub const HOST: Triple = Triple { - architecture: Architecture::X86_64, - vendor: Vendor::Pc, - operating_system: OperatingSystem::Windows, - environment: Environment::Msvc, - binary_format: BinaryFormat::Coff, -}; - -impl Architecture { - /// Return the architecture for the current host. - pub const fn host() -> Self { - Architecture::X86_64 - } -} - -impl Vendor { - /// Return the vendor for the current host. - pub const fn host() -> Self { - Vendor::Pc - } -} - -impl OperatingSystem { - /// Return the operating system for the current host. - pub const fn host() -> Self { - OperatingSystem::Windows - } -} - -impl Environment { - /// Return the environment for the current host. - pub const fn host() -> Self { - Environment::Msvc - } -} - -impl BinaryFormat { - /// Return the binary format for the current host. - pub const fn host() -> Self { - BinaryFormat::Coff - } -} - -impl Triple { - /// Return the triple for the current host. - pub const fn host() -> Self { - Self { - architecture: Architecture::X86_64, - vendor: Vendor::Pc, - operating_system: OperatingSystem::Windows, - environment: Environment::Msvc, - binary_format: BinaryFormat::Coff, - } - } -} |
