Merge pull request #304736 from abysssol/ollama-fix
ollama: fix compilation errors caused by dependency changes
This commit is contained in:
commit
55f906f52b
1 changed files with 2 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue