Merge pull request #147470 from trofi/fix-gdb-for-gcc-12

gdb: pull upstream fix for gcc-12
This commit is contained in:
lsix
2021-11-30 23:26:11 +00:00
committed by GitHub
+8 -1
View File
@@ -1,7 +1,7 @@
{ lib, stdenv, targetPackages
# Build time
, fetchurl, pkg-config, perl, texinfo, setupDebugInfoDirs, buildPackages
, fetchurl, fetchpatch, pkg-config, perl, texinfo, setupDebugInfoDirs, buildPackages
# Run time
, ncurses, readline, gmp, mpfr, expat, libipt, zlib, dejagnu, sourceHighlight
@@ -41,6 +41,13 @@ stdenv.mkDerivation rec {
patches = [
./debug-info-from-env.patch
# Pull upstream fix for gcc-12. Will be included in gdb-12.
(fetchpatch {
name = "gcc-12.patch";
url = "https://sourceware.org/git/?p=binutils-gdb.git;a=patch;h=e97436b1b789dcdb6ffb502263f4c86f8bc22996";
sha256 = "1mpgw6s9qgnwhwyg3hagc6vhqhvia0l1s8nr22bcahwqxi3wvzcw";
})
] ++ lib.optionals stdenv.isDarwin [
./darwin-target-match.patch
];