Merge pull request #172665 from trofi/workaround-fno-common-for-0verkill

_0verkill: add -fcommon workaround for gcc-10
main
Sandro 2 years ago committed by GitHub
commit fbf8e81d93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      pkgs/games/0verkill/default.nix

@ -27,6 +27,9 @@ gccStdenv.mkDerivation rec {
autoupdate
'';
# The code needs an update for gcc-10:
# https://github.com/hackndev/0verkill/issues/7
NIX_CFLAGS_COMPILE = "-fcommon";
hardeningDisable = [ "all" ]; # Someday the upstream will update the code...
meta = with lib; {

Loading…
Cancel
Save