mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-30 08:42:00 +00:00 
			
		
		
		
	nix: fix CUDA build - replace deprecated autoAddOpenGLRunpathHook
The CUDA nix build broke when we updated nixpkgs in
8cd1bcfd3f. As far as I can tell all
that happened is cudaPackages.autoAddOpenGLRunpathHook got moved to
pkgs.autoAddDriverRunpath. This commit fixes it.
			
			
This commit is contained in:
		| @@ -13,6 +13,7 @@ | ||||
|   mpi, | ||||
|   blas, | ||||
|   cudaPackages, | ||||
|   autoAddDriverRunpath, | ||||
|   darwin, | ||||
|   rocmPackages, | ||||
|   vulkan-headers, | ||||
| @@ -192,10 +193,7 @@ effectiveStdenv.mkDerivation ( | ||||
|       ] | ||||
|       ++ optionals useCuda [ | ||||
|         cudaPackages.cuda_nvcc | ||||
|  | ||||
|         # TODO: Replace with autoAddDriverRunpath | ||||
|         # once https://github.com/NixOS/nixpkgs/pull/275241 has been merged | ||||
|         cudaPackages.autoAddOpenGLRunpathHook | ||||
|         autoAddDriverRunpath | ||||
|       ] | ||||
|       ++ optionals (effectiveStdenv.hostPlatform.isGnu && enableStatic) [ | ||||
|         glibc.static | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Echo Nolan
					Echo Nolan