51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, rocmUpdateScript
|
|
, cmake
|
|
, clang
|
|
, rocm-device-libs
|
|
, llvm
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "rocm-comgr";
|
|
version = "5.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RadeonOpenCompute";
|
|
repo = "ROCm-CompilerSupport";
|
|
rev = "rocm-${finalAttrs.version}";
|
|
hash = "sha256-qLsrBTeSop7lIQv8gZDwgpvGZJOAq90zsvMi1QpfbAs=";
|
|
};
|
|
|
|
sourceRoot = "source/lib/comgr";
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ clang rocm-device-libs llvm ];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_C_COMPILER=${clang}/bin/clang"
|
|
"-DCMAKE_CXX_COMPILER=${clang}/bin/clang++"
|
|
"-DCMAKE_PREFIX_PATH=${llvm}/lib/cmake/llvm"
|
|
"-DLLD_INCLUDE_DIRS=${llvm}/include"
|
|
"-DLLVM_TARGETS_TO_BUILD=\"AMDGPU;X86\""
|
|
];
|
|
|
|
patches = [ ./cmake.patch ];
|
|
|
|
passthru.updateScript = rocmUpdateScript {
|
|
name = finalAttrs.pname;
|
|
owner = finalAttrs.src.owner;
|
|
repo = finalAttrs.src.repo;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "APIs for compiling and inspecting AMDGPU code objects";
|
|
homepage = "https://github.com/RadeonOpenCompute/ROCm-CompilerSupport/tree/amd-stg-open/lib/comgr";
|
|
license = licenses.ncsa;
|
|
maintainers = with maintainers; [ lovesegfault ] ++ teams.rocm.members;
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|