mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 21:39:07 +00:00
add the Windows64 target
This commit is contained in:
parent
784d855cd9
commit
23411ea147
4 changed files with 25 additions and 25 deletions
|
@ -74,6 +74,7 @@ pub enum Architecture {
|
|||
Wasm32,
|
||||
X86_32,
|
||||
X86_64,
|
||||
Windows64,
|
||||
}
|
||||
|
||||
impl Architecture {
|
||||
|
@ -81,7 +82,7 @@ impl Architecture {
|
|||
use Architecture::*;
|
||||
|
||||
match self {
|
||||
X86_64 | Aarch64 => PtrWidth::Bytes8,
|
||||
X86_64 | Aarch64 | Windows64 => PtrWidth::Bytes8,
|
||||
X86_32 | Aarch32 | Wasm32 => PtrWidth::Bytes4,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue