mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-02 08:11:12 +00:00
Specify environments on linux targets
This commit is contained in:
parent
746fb6ce88
commit
9f8be769fb
1 changed files with 2 additions and 2 deletions
|
@ -551,14 +551,14 @@ impl Target {
|
||||||
architecture: Architecture::X86_32(X86_32Architecture::I386),
|
architecture: Architecture::X86_32(X86_32Architecture::I386),
|
||||||
vendor: Vendor::Unknown,
|
vendor: Vendor::Unknown,
|
||||||
operating_system: OperatingSystem::Linux,
|
operating_system: OperatingSystem::Linux,
|
||||||
environment: Environment::Unknown,
|
environment: Environment::Musl,
|
||||||
binary_format: BinaryFormat::Elf,
|
binary_format: BinaryFormat::Elf,
|
||||||
},
|
},
|
||||||
Linux64 => Triple {
|
Linux64 => Triple {
|
||||||
architecture: Architecture::X86_64,
|
architecture: Architecture::X86_64,
|
||||||
vendor: Vendor::Unknown,
|
vendor: Vendor::Unknown,
|
||||||
operating_system: OperatingSystem::Linux,
|
operating_system: OperatingSystem::Linux,
|
||||||
environment: Environment::Unknown,
|
environment: Environment::Gnu,
|
||||||
binary_format: BinaryFormat::Elf,
|
binary_format: BinaryFormat::Elf,
|
||||||
},
|
},
|
||||||
Wasm32 => Triple {
|
Wasm32 => Triple {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue