about summary refs log tree commit diff
path: root/lib/systems/default.nix
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2024-06-18 13:23:58 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2024-06-18 13:23:58 -0400
commitbab20def476ecc8d7bc46122affd1712fc0fcb35 (patch)
tree946a92ce82940575378f411e965cd00dd989cdd8 /lib/systems/default.nix
parent88af533d8ae8d1e7e4648decf7817ebff91abf56 (diff)
lib.systems: Default `useLLVM` to true with OpenBSD too
Not just FreeBSD.
Diffstat (limited to 'lib/systems/default.nix')
-rw-r--r--lib/systems/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/systems/default.nix b/lib/systems/default.nix
index d37ff720edce6..0981122388bb1 100644
--- a/lib/systems/default.nix
+++ b/lib/systems/default.nix
@@ -81,7 +81,7 @@ let
         && final.parsed.kernel == platform.parsed.kernel;
       isCompatible = _: throw "2022-05-23: isCompatible has been removed in favor of canExecute, refer to the 22.11 changelog for details";
       # Derived meta-data
-      useLLVM = final.isFreeBSD;
+      useLLVM = final.isFreeBSD || final.isOpenBSD;
 
       libc =
         /**/ if final.isDarwin              then "libSystem"