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
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
|||||||
# there are missing dependencies in the Makefile, causing sporadic build failures
|
# there are missing dependencies in the Makefile, causing sporadic build failures
|
||||||
enableParallelBuilding = false;
|
enableParallelBuilding = false;
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = stdenv.isLinux;
|
||||||
|
|
||||||
buildInputs = with llvmPackages; [
|
buildInputs = with llvmPackages; [
|
||||||
which
|
which
|
||||||
@ -67,7 +67,7 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = https://ispc.github.io/ ;
|
homepage = https://ispc.github.io/ ;
|
||||||
description = "Intel 'Single Program, Multiple Data' Compiler, a vectorised language";
|
description = "Intel 'Single Program, Multiple Data' Compiler, a vectorised language";
|
||||||
license = licenses.bsd3;
|
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 ];
|
maintainers = [ maintainers.aristid ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user