Merge pull request #304736 from abysssol/ollama-fix

ollama: fix compilation errors caused by dependency changes
This commit is contained in:
Pol Dellaiera 2024-04-17 10:06:40 +02:00 committed by GitHub
commit 55f906f52b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 4 deletions

View File

@ -100,10 +100,6 @@ let
cudaPackages.cuda_cudart
cudaPackages.cuda_cudart.static
];
postBuild = ''
rm "$out/lib64"
ln -s "lib" "$out/lib64"
'';
};
runtimeLibs = lib.optionals enableRocm [
@ -140,6 +136,8 @@ goBuild ((lib.optionalAttrs enableRocm {
nativeBuildInputs = [
cmake
] ++ lib.optionals enableRocm [
rocmPackages.llvm.bintools
] ++ lib.optionals (enableRocm || enableCuda) [
makeWrapper
] ++ lib.optionals stdenv.isDarwin