Merge pull request #70846 from athas/ispc-macos
ispc: add x86_64-darwin to platforms. Closes https://github.com/NixOS/nixpkgs/pull/71134
This commit is contained in:
commit
22378e6996
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue