1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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
This commit is contained in:
Sergei Trofimovich 2022-06-06 18:46:42 +01:00
parent ef75dae045
commit d8b2dd91e0

View file

@ -35,6 +35,12 @@ stdenv.mkDerivation rec {
buildInputs = [ SDL SDL_mixer SDL_sound gtk2 ]
++ lib.optionals stdenv.isDarwin [ smpeg libvorbis ];
# Workaround build failure on -fno-common toolchains:
# ld: build/linux.release/alan3/Location.o:(.bss+0x0): multiple definition of
# `logFile'; build/linux.release/alan3/act.o:(.bss+0x0): first defined here
# TODO: drop once updated to 2022.1 or later.
NIX_CFLAGS_COMPILE = "-fcommon";
buildPhase = jamenv + "jam -j$NIX_BUILD_CORES";
installPhase =