Skip to content

Commit 16c9ca5

Browse files
committed
intel-compute-runtime-legacy1: 24.35.30872.32 → 24.35.30872.41
And add patch for gcc 15 compatibility, submitted as: intel/compute-runtime#879 - See: NixOS#475479
1 parent af77653 commit 16c9ca5

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

  • pkgs/by-name/in/intel-compute-runtime-legacy1

pkgs/by-name/in/intel-compute-runtime-legacy1/package.nix

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
lib,
33
stdenv,
44
fetchFromGitHub,
5+
fetchpatch,
56
cmake,
67
pkg-config,
78
intel-gmmlib,
@@ -17,13 +18,13 @@ in
1718
stdenv.mkDerivation rec {
1819
# https://github.com/intel/compute-runtime/blob/master/LEGACY_PLATFORMS.md
1920
pname = "intel-compute-runtime-legacy1";
20-
version = "24.35.30872.32"; # 24.35.30872.x is the last series to support Gen8, Gen9 and Gen11 GPU support
21+
version = "24.35.30872.41"; # 24.35.30872.x is the last series to support Gen8, Gen9 and Gen11 GPU support
2122

2223
src = fetchFromGitHub {
2324
owner = "intel";
2425
repo = "compute-runtime";
2526
rev = version;
26-
hash = "sha256-POImMopbrhVXuSx2MQ9mwPNKQx7BljyikKhu6M4hZME=";
27+
hash = "sha256-CnMIOAPnVhKVQxAcOZAuV5M4HJ2qftzEm9YdCuvkFbI=";
2728
};
2829

2930
nativeBuildInputs = [
@@ -38,6 +39,13 @@ stdenv.mkDerivation rec {
3839
level-zero
3940
];
4041

42+
patches = [
43+
(fetchpatch {
44+
url = "https://github.com/intel/compute-runtime/commit/38fdd9d36c5e8a471f38d3f131c2fdf6720e2577.patch";
45+
hash = "sha256-o5+tEn3tHypkTrwHEKlW2ta6vxgaAg+lPQrHC0uVv6o=";
46+
})
47+
];
48+
4149
cmakeFlags = [
4250
"-DSKIP_UNIT_TESTS=1"
4351
"-DIGC_DIR=${intel-graphics-compiler}"

0 commit comments

Comments
 (0)