Skip to content

Commit

Permalink
Merge pull request NixOS#70846 from athas/ispc-macos
Browse files Browse the repository at this point in the history
ispc: add x86_64-darwin to platforms.

Closes NixOS#71134
  • Loading branch information
marsam committed Nov 4, 2019
2 parents cf8a2d0 + b60853c commit 22378e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/compilers/ispc/default.nix
Expand Up @@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
# there are missing dependencies in the Makefile, causing sporadic build failures
enableParallelBuilding = false;

doCheck = true;
doCheck = stdenv.isLinux;

buildInputs = with llvmPackages; [
which
Expand Down Expand Up @@ -67,7 +67,7 @@ stdenv.mkDerivation rec {
homepage = https://ispc.github.io/ ;
description = "Intel 'Single Program, Multiple Data' Compiler, a vectorised language";
license = licenses.bsd3;
platforms = ["x86_64-linux"]; # TODO: buildable on more platforms?
platforms = ["x86_64-linux" "x86_64-darwin"]; # TODO: buildable on more platforms?
maintainers = [ maintainers.aristid ];
};
}

0 comments on commit 22378e6

Please sign in to comment.