We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
x86_64 into
1 parent 6cd8230 commit ff0765dCopy full SHA for ff0765d
boot/duneboot.ml
@@ -325,14 +325,12 @@ module Arch = struct
325
type t =
326
[ `arm64
327
| `amd64
328
- | `x86_64
329
| `other
330
]
331
332
let of_string : string -> t = function
333
| "arm64" -> `arm64
334
- | "amd64" -> `amd64
335
- | "x86_64" -> `x86_64
+ | "x86_64" | "amd64" -> `amd64
336
| _ -> `other
337
;;
338
end
@@ -1443,7 +1441,7 @@ module Library = struct
1443
1441
match arch with
1444
1442
| None -> true
1445
| Some `Arm64 -> architecture = `arm64
1446
- | Some `X86 -> architecture = `amd64 || architecture = `x86_64
+ | Some `X86 -> architecture = `amd64
1447
1448
1449
let make_c (c : File_kind.c) ~fn ~os_type ~word_size =
0 commit comments