File tree Expand file tree Collapse file tree
pkgs/by-name/in/intel-compute-runtime-legacy1 Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 1717stdenv . 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 } "
You can’t perform that action at this time.
0 commit comments