lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

gdb: fix charset issue on darwin, missing libiconv (#245576)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by

patryk4815
Sandro
and committed by
GitHub
a9c33b3f 38b9e60e

+3 -2
+3 -2
pkgs/development/tools/misc/gdb/default.nix
··· 4 4 , fetchurl, fetchpatch, pkg-config, perl, texinfo, setupDebugInfoDirs, buildPackages 5 5 6 6 # Run time 7 - , ncurses, readline, gmp, mpfr, expat, libipt, zlib, zstd, dejagnu, sourceHighlight 7 + , ncurses, readline, gmp, mpfr, expat, libipt, zlib, zstd, dejagnu, sourceHighlight, libiconv 8 8 9 9 , pythonSupport ? stdenv.hostPlatform == stdenv.buildPlatform && !stdenv.hostPlatform.isCygwin, python3 ? null 10 10 , enableDebuginfod ? lib.meta.availableOn stdenv.hostPlatform elfutils, elfutils ··· 57 57 buildInputs = [ ncurses readline gmp mpfr expat libipt zlib zstd guile sourceHighlight ] 58 58 ++ lib.optional pythonSupport python3 59 59 ++ lib.optional doCheck dejagnu 60 - ++ lib.optional enableDebuginfod (elfutils.override { enableDebuginfod = true; }); 60 + ++ lib.optional enableDebuginfod (elfutils.override { enableDebuginfod = true; }) 61 + ++ lib.optional stdenv.isDarwin libiconv; 61 62 62 63 propagatedNativeBuildInputs = [ setupDebugInfoDirs ]; 63 64