Add RISC-V cross-compilation target for CI
Some checks failed
CI / build:all (pull_request) Failing after 4s
CI / build:cross (pull_request) Failing after 40s

This commit is contained in:
2025-10-09 14:24:59 +02:00
parent dd7f24f455
commit 9340010ea3
6 changed files with 38 additions and 22 deletions

View File

@@ -86,4 +86,7 @@ in
patchelf --add-needed libnuma.so $out/bin/AMDuProfPcm
set +x
'';
meta = {
platforms = [ "x86_64-linux" ];
};
}

View File

@@ -28,6 +28,6 @@ in stdenv.mkDerivation {
meta = {
description = "AMD Power Profiler Driver";
homepage = "https://www.amd.com/es/developer/uprof.html";
platforms = lib.platforms.linux;
platforms = [ "x86_64-linux" ];
};
}

View File

@@ -40,4 +40,5 @@ stdenv.mkDerivation (finalAttrs: {
'';
installPhase = "touch $out";
};
meta.platforms = [ "x86_64-linux" ];
})