gargoyle: add -fcommon workaround

Workaround build failure on -fno-common toolchains like upstream
gcc-10. Otherwise build fails as:

ld: build/linux.release/alan3/Location.o:(.bss+0x0): multiple definition of
`logFile'; build/linux.release/alan3/act.o:(.bss+0x0): first defined here

+6
+6
pkgs/games/gargoyle/default.nix
··· 35 35 buildInputs = [ SDL SDL_mixer SDL_sound gtk2 ] 36 36 ++ lib.optionals stdenv.isDarwin [ smpeg libvorbis ]; 37 37 38 + # Workaround build failure on -fno-common toolchains: 39 + # ld: build/linux.release/alan3/Location.o:(.bss+0x0): multiple definition of 40 + # `logFile'; build/linux.release/alan3/act.o:(.bss+0x0): first defined here 41 + # TODO: drop once updated to 2022.1 or later. 42 + NIX_CFLAGS_COMPILE = "-fcommon"; 43 + 38 44 buildPhase = jamenv + "jam -j$NIX_BUILD_CORES"; 39 45 40 46 installPhase =