Skip to content

Commit 0f94fe2

Browse files
DarkKirbSuperSandro2000
authored andcommitted
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 (cherry picked from commit 53c995e)
1 parent 306a442 commit 0f94fe2

2 files changed

Lines changed: 32 additions & 2 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
From 38fdd9d36c5e8a471f38d3f131c2fdf6720e2577 Mon Sep 17 00:00:00 2001
2+
From: =?UTF-8?q?Charlotte=20=F0=9F=A6=9D=20Dele=C5=84kec?= <lotte@chir.rs>
3+
Date: Wed, 31 Dec 2025 16:32:36 +0100
4+
Subject: [PATCH] fix: Add another missing include for GCC 15
5+
MIME-Version: 1.0
6+
Content-Type: text/plain; charset=UTF-8
7+
Content-Transfer-Encoding: 8bit
8+
9+
Signed-off-by: Charlotte Deleńkec <lotte@chir.rs>
10+
---
11+
shared/source/os_interface/linux/local/dg1/drm_tip_helper.cpp | 1 +
12+
1 file changed, 1 insertion(+)
13+
14+
diff --git a/shared/source/os_interface/linux/local/dg1/drm_tip_helper.cpp b/shared/source/os_interface/linux/local/dg1/drm_tip_helper.cpp
15+
index 99f771c98457e..e78c638c35532 100644
16+
--- a/shared/source/os_interface/linux/local/dg1/drm_tip_helper.cpp
17+
+++ b/shared/source/os_interface/linux/local/dg1/drm_tip_helper.cpp
18+
@@ -7,6 +7,7 @@
19+
20+
#include "shared/source/os_interface/linux/i915.h"
21+
22+
+#include <cstdint>
23+
#include <memory>
24+
#include <vector>
25+

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

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ in
1717
stdenv.mkDerivation rec {
1818
# https://github.com/intel/compute-runtime/blob/master/LEGACY_PLATFORMS.md
1919
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
20+
version = "24.35.30872.41"; # 24.35.30872.x is the last series to support Gen8, Gen9 and Gen11 GPU support
2121

2222
src = fetchFromGitHub {
2323
owner = "intel";
2424
repo = "compute-runtime";
2525
rev = version;
26-
hash = "sha256-POImMopbrhVXuSx2MQ9mwPNKQx7BljyikKhu6M4hZME=";
26+
hash = "sha256-CnMIOAPnVhKVQxAcOZAuV5M4HJ2qftzEm9YdCuvkFbI=";
2727
};
2828

2929
nativeBuildInputs = [
@@ -38,6 +38,11 @@ stdenv.mkDerivation rec {
3838
level-zero
3939
];
4040

41+
patches = [
42+
# https://github.com/intel/compute-runtime/pull/879
43+
./add-cstdint-include-gcc15.patch
44+
];
45+
4146
cmakeFlags = [
4247
"-DSKIP_UNIT_TESTS=1"
4348
"-DIGC_DIR=${intel-graphics-compiler}"

0 commit comments

Comments
 (0)