From faae760e98c9a17d9604d2b66b8a15a13071f94e Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Sun, 27 Feb 2022 18:40:07 +0100 Subject: [PATCH] llvmPackages_git.llvm: Drop llvm-config-link-static.patch (#162101) To fix the build as this patch was already upstreamed in the meantime. --- pkgs/development/compilers/llvm/git/llvm/default.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkgs/development/compilers/llvm/git/llvm/default.nix b/pkgs/development/compilers/llvm/git/llvm/default.nix index e9ec6a4261453..d2059cc66ba23 100644 --- a/pkgs/development/compilers/llvm/git/llvm/default.nix +++ b/pkgs/development/compilers/llvm/git/llvm/default.nix @@ -60,12 +60,6 @@ in stdenv.mkDerivation (rec { checkInputs = [ which ]; patches = [ - # When cross-compiling we configure llvm-config-native with an approximation - # of the flags used for the normal LLVM build. To avoid the need for building - # a native libLLVM.so (which would fail) we force llvm-config to be linked - # statically against the necessary LLVM components always. - ../../llvm-config-link-static.patch - ./gnu-install-dirs.patch ] ++ lib.optional enablePolly ./gnu-install-dirs-polly.patch;