summary refs log tree commit diff
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-05-17 00:37:41 +0300
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-05-17 00:37:41 +0300
commit130872273061c9e9055abd7f35a3c57718358bd8 (patch)
tree036e85d192bc7b20af5187726ffb5be375a99f1b
parentab2aea35144db308bb5de119f00b98db58600380 (diff)
downloadnixpkgs-130872273061c9e9055abd7f35a3c57718358bd8.tar
nixpkgs-130872273061c9e9055abd7f35a3c57718358bd8.tar.gz
nixpkgs-130872273061c9e9055abd7f35a3c57718358bd8.tar.bz2
nixpkgs-130872273061c9e9055abd7f35a3c57718358bd8.tar.lz
nixpkgs-130872273061c9e9055abd7f35a3c57718358bd8.tar.xz
nixpkgs-130872273061c9e9055abd7f35a3c57718358bd8.tar.zst
nixpkgs-130872273061c9e9055abd7f35a3c57718358bd8.zip
audiofile: remove -lgcc on i686-linux
-rw-r--r--pkgs/development/libraries/audiofile/default.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkgs/development/libraries/audiofile/default.nix b/pkgs/development/libraries/audiofile/default.nix
index 7366c6e3637..c6d656388d4 100644
--- a/pkgs/development/libraries/audiofile/default.nix
+++ b/pkgs/development/libraries/audiofile/default.nix
@@ -28,9 +28,6 @@ stdenv.mkDerivation rec {
 
   outputs = [ "out" "dev" "man" ];
 
-  # fix build with gcc9
-  NIX_CFLAGS_LINK = lib.optional (stdenv.system == "i686-linux") "-lgcc";
-
   # Even when statically linking, libstdc++.la is put in dependency_libs here,
   # and hence libstdc++.so passed to the linker, just pass -lstdc++ and let the
   # compiler do what it does best.  (libaudiofile.la is a generated file, so we