Skip to content

Commit

Permalink
add riscv64 support
Browse files Browse the repository at this point in the history
https://github.com/app/riscv-builders runs on real riscv64 machine, and I've tested ocaml 4.11 supported riscv64
  • Loading branch information
mengzhuo authored Dec 23, 2024
1 parent e87292c commit c44cda9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/setup-ocaml/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ export const ARCHITECTURE = (() => {
case "x64": {
return "x86_64";
}
case "riscv64": {
return "riscv64";
}
default: {
throw new Error("The architecture is not supported.");
}
Expand Down

0 comments on commit c44cda9

Please sign in to comment.