about summary refs log tree commit diff
path: root/pkgs/games/lincity
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/lincity')
-rw-r--r--pkgs/games/lincity/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/games/lincity/default.nix b/pkgs/games/lincity/default.nix
index 057f78f26dede..c2ce8f3d82b24 100644
--- a/pkgs/games/lincity/default.nix
+++ b/pkgs/games/lincity/default.nix
@@ -25,6 +25,12 @@ stdenv.mkDerivation rec {
     })
   ];
 
+  # Workaround build failure on -fno-common toolchains like upstream
+  # gcc-10. Otherwise build fails as:
+  #   ld: modules/.libs/libmodules.a(rocket_pad.o):/build/lincity-1.13.1/modules/../screen.h:23:
+  #     multiple definition of `monthgraph_style'; ldsvguts.o:/build/lincity-1.13.1/screen.h:23: first defined here
+  NIX_CFLAGS_COMPILE = "-fcommon";
+
   meta = with lib; {
     description = "City simulation game";
     license = licenses.gpl2Plus;