Commit 888dee44 authored by Ali Abrar's avatar Ali Abrar Committed by John Ericson
Browse files

openbsd: init at 7.5

parent ad6fa01c
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -93,6 +93,7 @@ let
        else if final.isAndroid             then "bionic"
        else if final.isLinux /* default */ then "glibc"
        else if final.isFreeBSD             then "fblibc"
        else if final.isOpenBSD             then "oblibc"
        else if final.isNetBSD              then "nblibc"
        else if final.isAvr                 then "avrlibc"
        else if final.isGhcjs               then null
+5 −0
Original line number Diff line number Diff line
@@ -342,6 +342,11 @@ rec {
    useLLVM = true;
  };

  x86_64-openbsd = {
    config = "x86_64-unknown-openbsd";
    useLLVM = true;
  };

  #
  # WASM
  #
+1 −0
Original line number Diff line number Diff line
@@ -469,6 +469,7 @@ rec {
              elem (elemAt l 2) [ "wasi" "redox" "mmixware" "ghcjs" "mingw32" ] ||
              hasPrefix "freebsd" (elemAt l 2) ||
              hasPrefix "netbsd" (elemAt l 2) ||
              hasPrefix "openbsd" (elemAt l 2) ||
              hasPrefix "genode" (elemAt l 2)
      then {
        cpu    = elemAt l 0;
+1 −1
Original line number Diff line number Diff line
@@ -14,5 +14,5 @@
    }
    .${stdenv'.hostPlatform.parsed.cpu.name} or stdenv'.hostPlatform.parsed.cpu.name;

  install-wrapper = builtins.readFile ./install-wrapper.sh;
  install-wrapper = builtins.readFile ../../lib/install-wrapper.sh;
}
Loading