Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ispc: fix one error by adding glibc32

llvm linking errors remain

+3 -1
+2 -1
pkgs/development/compilers/ispc/default.nix
··· 1 - {stdenv, fetchFromGitHub, which, m4, python, bison, flex, llvmPackages}: 2 3 # TODO: patch LLVM so Knights Landing works better (patch included in ispc github) 4 ··· 27 flex 28 llvm 29 clang 30 ]; 31 32 # https://github.com/ispc/ispc/pull/1190
··· 1 + { stdenv, fetchFromGitHub, which, m4, python, bison, flex, llvmPackages, glibc32 }: 2 3 # TODO: patch LLVM so Knights Landing works better (patch included in ispc github) 4 ··· 27 flex 28 llvm 29 clang 30 + glibc32 31 ]; 32 33 # https://github.com/ispc/ispc/pull/1190
+1
pkgs/top-level/all-packages.nix
··· 7107 7108 ispc = callPackage ../development/compilers/ispc { 7109 llvmPackages = llvmPackages_37; 7110 }; 7111 7112 itk = callPackage ../development/libraries/itk {
··· 7107 7108 ispc = callPackage ../development/compilers/ispc { 7109 llvmPackages = llvmPackages_37; 7110 + glibc32 = pkgsi686Linux.glibc; 7111 }; 7112 7113 itk = callPackage ../development/libraries/itk {