lol

Merge #133821: libffi: disable static trampolines

... into staging-next

+6
+6
pkgs/development/libraries/libffi/default.nix
··· 24 24 configureFlags = [ 25 25 "--with-gcc-arch=generic" # no detection of -march= or -mtune= 26 26 "--enable-pax_emutramp" 27 + 28 + # Causes issues in downstream packages which misuse ffi_closure_alloc 29 + # Reenable once these issues are fixed and merged: 30 + # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/6155 31 + # https://gitlab.gnome.org/GNOME/gobject-introspection/-/merge_requests/283 32 + "--disable-exec-static-tramp" 27 33 ]; 28 34 29 35 preCheck = ''