lol
fork

Configure Feed

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

gdb: patch to use mach-o.h instead of bfd/mach-o.h

For unclear reasons, this doesn’t seem to work anymore. bfd/mach-o.h
is not accessible but mach-o.h is.

https://hydra.nixos.org/build/94542582

+5
+5
pkgs/development/tools/misc/gdb/default.nix
··· 29 29 sha256 = "0bnpzz0rl672xg5547q5qck2sxi6cnyixmk8bbb4gifw17ipwbw0"; 30 30 }; 31 31 32 + postPatch = if stdenv.isDarwin then '' 33 + substituteInPlace gdb/darwin-nat.c \ 34 + --replace '#include "bfd/mach-o.h"' '#include "mach-o.h"' 35 + '' else null; 36 + 32 37 patches = [ 33 38 ./debug-info-from-env.patch 34 39 ] ++ stdenv.lib.optionals stdenv.isDarwin [