Archived
1
0
forked from rarias/bscpkgs

1 Commits

Author SHA1 Message Date
9c04aabd7a Fix GPI-2 and enable TAGASPI
The rdma-core driver.h include is no longer installed:

 56dd87acd2

So ibv_read_sysfs_file() is not defined. As the symbols is still
distributed, we simply add the missing prototype manually.

Similarly, the gaspi_size_t gaspi_get_system_mem() function is not
available from the gaspi public headers, so we define it in the
max_mem.c test.

Fixes: rarias/bscpkgs#7
2025-09-12 13:40:59 +02:00
2 changed files with 0 additions and 9 deletions

View File

@@ -13,12 +13,5 @@
bscOverlay = import ./overlay.nix;
overlays.default = self.bscOverlay;
legacyPackages.x86_64-linux = pkgs;
# propagate nixpkgs lib, so we can do bscpkgs.lib
inherit (nixpkgs) lib;
hydraJobs = {
inherit (self.legacyPackages.x86_64-linux.bsc-ci) test packages;
};
};
}

View File

@@ -88,8 +88,6 @@ in bscPkgs // {
};
};
packages = filterAttrs (_: isDerivation) bscPkgs;
pkgs = final.runCommand "ci-pkgs" { }
"printf '%s\n' ${toString (collect isDerivation bscPkgs)} > $out";