nixpkgs-suyu/pkgs/development/libraries/rocm-comgr/default.nix

54 lines
1.8 KiB
Nix
Raw Normal View History

2021-09-08 16:15:25 +02:00
{ lib, stdenv, fetchFromGitHub, writeScript, cmake, clang, rocm-device-libs, lld, llvm }:
2020-07-10 19:53:14 +02:00
stdenv.mkDerivation rec {
pname = "rocm-comgr";
2021-09-02 21:30:10 +02:00
version = "4.3.1";
2020-07-10 19:53:14 +02:00
src = fetchFromGitHub {
owner = "RadeonOpenCompute";
repo = "ROCm-CompilerSupport";
rev = "rocm-${version}";
2021-09-02 21:30:10 +02:00
hash = "sha256-wHSAhp1cqR9xOreGt2M2Td/ELCuLEHjpMRRkqE9dUy0=";
2020-07-10 19:53:14 +02:00
};
sourceRoot = "source/lib/comgr";
nativeBuildInputs = [ cmake ];
2021-09-02 21:30:10 +02:00
buildInputs = [ clang rocm-device-libs lld llvm ];
2020-07-10 19:53:14 +02:00
cmakeFlags = [
"-DCLANG=${clang}/bin/clang"
"-DCMAKE_BUILD_TYPE=Release"
"-DCMAKE_C_COMPILER=${clang}/bin/clang"
"-DCMAKE_CXX_COMPILER=${clang}/bin/clang++"
"-DCMAKE_PREFIX_PATH=${llvm}/lib/cmake/llvm"
"-DLLD_INCLUDE_DIRS=${lld.src}/include"
"-DLLVM_TARGETS_TO_BUILD=\"AMDGPU;X86\""
];
# The comgr build tends to link against the static LLVM libraries
# *and* the dynamic library. Linking against both causes errors
# about command line options being registered twice. This patch
# removes the static library linking.
patchPhase = ''
sed -e '/^llvm_map_components_to_libnames/,/[[:space:]]*Symbolize)/d' \
-i CMakeLists.txt
'';
2021-09-08 16:15:25 +02:00
passthru.updateScript = writeScript "update.sh" ''
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p curl jq common-updater-scripts
version="$(curl -sL "https://api.github.com/repos/RadeonOpenCompute/ROCm-CompilerSupport/releases?per_page=1" | jq '.[0].tag_name | split("-") | .[1]' --raw-output)"
update-source-version rocm-comgr "$version"
'';
meta = with lib; {
2020-07-10 19:53:14 +02:00
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;
2021-09-02 21:30:10 +02:00
maintainers = with maintainers; [ lovesegfault ];
2020-07-10 19:53:14 +02:00
platforms = platforms.linux;
};
}