Commit 48e763b1 authored by Markus Kowalewski's avatar Markus Kowalewski
Browse files

ucx: use getDev to pickup rdam-core includes

parent ff75cea6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -43,11 +43,11 @@ stdenv.mkDerivation rec {
  ++ lib.optionals enableRocm [ rocm-core rocm-runtime rocm-device-libs hip ];

  configureFlags = [
    "--with-rdmacm=${rdma-core}"
    "--with-rdmacm=${lib.getDev rdma-core}"
    "--with-dc"
    "--with-rc"
    "--with-dm"
    "--with-verbs=${rdma-core}"
    "--with-verbs=${lib.getDev rdma-core}"
  ] ++ lib.optional enableCuda "--with-cuda=${cudatoolkit'}"
  ++ lib.optional enableRocm "--with-rocm=${rocm}";