Merge pull request #173375 from trofi/workaround-fno-common-for-liquidwar5

liquidwar5: add -fcommon workaround
This commit is contained in:
Artturi 2022-05-17 14:34:41 +03:00 committed by GitHub
commit 77a35ce718
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,14 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ]; hardeningDisable = [ "format" ];
NIX_CFLAGS_COMPILE = [ "-lm" ]; NIX_CFLAGS_COMPILE = [
# Workaround build failure on -fno-common toolchains like upstream
# gcc-10. Otherwise build fails as:
# ld: random.o:(.bss+0x0): multiple definition of `LW_RANDOM_ON'; game.o:(.bss+0x4): first defined here
"-fcommon"
"-lm"
];
meta = with lib; { meta = with lib; {
description = "The classic version of a quick tactics game LiquidWar"; description = "The classic version of a quick tactics game LiquidWar";