mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-30 14:11:21 +00:00
tinyfugue: add -fcommon workaround
Workaround build failure on -fno-common toolchains like upstream gcc-10. Otherwise build fails as: ld: world.o:/build/tf-50b8/src/socket.h:24: multiple definition of `world_decl'; command.o:/build/tf-50b8/src/socket.h:24: first defined here
This commit is contained in:
parent
59df0efd22
commit
ba16b79ddf
@ -23,6 +23,12 @@ stdenv.mkDerivation rec {
|
|||||||
[ ncurses zlib ]
|
[ ncurses zlib ]
|
||||||
++ optional sslSupport openssl;
|
++ optional sslSupport openssl;
|
||||||
|
|
||||||
|
# Workaround build failure on -fno-common toolchains like upstream
|
||||||
|
# gcc-10. Otherwise build fails as:
|
||||||
|
# ld: world.o:/build/tf-50b8/src/socket.h:24: multiple definition of
|
||||||
|
# `world_decl'; command.o:/build/tf-50b8/src/socket.h:24: first defined here
|
||||||
|
NIX_CFLAGS_COMPILE="-fcommon";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://tinyfugue.sourceforge.net/";
|
homepage = "http://tinyfugue.sourceforge.net/";
|
||||||
description = "A terminal UI, screen-oriented MUD client";
|
description = "A terminal UI, screen-oriented MUD client";
|
||||||
|
Loading…
Reference in New Issue
Block a user