Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: cf8a2d0225d5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 22378e699682
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 9, 2019

  1. Copy the full SHA
    5ddd4db View commit details

Commits on Nov 3, 2019

  1. ispc: only check on Linux

    The test suite tries to execute `transcendentals` tests, which is not
    expected to work anywhere except Linux.
    marsam committed Nov 3, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    marsam Mario Rodas
    Copy the full SHA
    b60853c View commit details

Commits on Nov 4, 2019

  1. Merge pull request #70846 from athas/ispc-macos

    ispc: add x86_64-darwin to platforms.
    
    Closes #71134
    marsam authored Nov 4, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    22378e6 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/compilers/ispc/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/compilers/ispc/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}