mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 21:39:07 +00:00
Add support for x64 linux
This commit is contained in:
parent
e1a88f190c
commit
412eb763bb
4 changed files with 32 additions and 0 deletions
|
@ -427,6 +427,13 @@ pub fn module_from_builtins<'ctx>(
|
|||
} => {
|
||||
include_bytes!("../../../builtins/bitcode/i386-unknown-linux-musl.bc")
|
||||
}
|
||||
Triple {
|
||||
architecture: Architecture::X86_64,
|
||||
operating_system: OperatingSystem::Linux,
|
||||
..
|
||||
} => {
|
||||
include_bytes!("../../../builtins/bitcode/x86_64-unknown-linux-musl.bc")
|
||||
}
|
||||
_ => panic!(
|
||||
"The zig builtins are not currently built for this target: {:?}",
|
||||
target
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue