Skip to content

Commit

Permalink
nix: Enable CapDL tests on 32-bit configurations
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Spinale <[email protected]>
  • Loading branch information
nspin committed Mar 5, 2024
1 parent 8b8465a commit d3d17cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hacking/nix/scope/world/instances/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
let
inherit (worldConfig) isMicrokit canSimulate;

haveFullRuntime = !isMicrokit && (hostPlatform.isAarch || hostPlatform.isRiscV || hostPlatform.isx86_64);
haveMinimalRuntime = haveFullRuntime;
haveFullRuntime = !isMicrokit;
haveMinimalRuntime = !isMicrokit;
haveUnwindingSupport = !hostPlatform.isAarch32;
haveKernelLoader = hostPlatform.isAarch || hostPlatform.isRiscV;
haveCapDLInitializer = hostPlatform.isAarch64 || hostPlatform.isRiscV64 || hostPlatform.isx86_64;
haveCapDLInitializer = true;

maybe = condition: v: if condition then v else null;

Expand Down

0 comments on commit d3d17cb

Please sign in to comment.