summaryrefslogtreecommitdiff
path: root/.nix
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2025-10-26 13:46:27 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2025-10-26 13:46:27 +0100
commite31609040915755dc1572c9b478d3b5a49e11e27 (patch)
tree94d4ff3ea730c214dbaec820cd3d405cbb26b7b6 /.nix
parent51d0394f250b2d7ce521a3c7136f018c428ddc92 (diff)
downloadlibs-lbm-e31609040915755dc1572c9b478d3b5a49e11e27.tar.gz
Adding dangling changes from slowly moving to SYCL USM 2020
And other random stuff
Diffstat (limited to '.nix')
-rw-r--r--.nix/adaptive-cpp.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/.nix/adaptive-cpp.nix b/.nix/adaptive-cpp.nix
index 6c70be0..a39d9b7 100644
--- a/.nix/adaptive-cpp.nix
+++ b/.nix/adaptive-cpp.nix
@@ -6,6 +6,7 @@
, boost
, llvmPackages
, lld
+, python3
}:
let
@@ -31,6 +32,7 @@ in stdenv.mkDerivation {
llvmPackages.openmp
llvmPackages.libclang
llvmPackages.llvm
+ python3
];
cmakeFlags = [
@@ -47,7 +49,7 @@ in stdenv.mkDerivation {
postFixup = ''
wrapProgram $out/bin/syclcc-clang \
- --prefix PATH : ${lib.makeBinPath [ lld ]} \
+ --prefix PATH : ${lib.makeBinPath [ lld python3 ]} \
--add-flags "-L${llvmPackages.openmp}/lib" \
--add-flags "-I${llvmPackages.openmp.dev}/include" \
'';