From 7520e84ec2830fe889b538a00415ae7a0ce2452e Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sun, 22 May 2022 18:19:24 +0100 Subject: [PATCH] openbgpd: add -fcommon workaround Workaround build failure on -fno-common toolchains like upstream gcc-10. Otherwise build fails as: ld: bgpd-rde_peer.o:/build/source/src/bgpd/bgpd.h:133: multiple definition of `bgpd_process'; bgpd-bgpd.o:/build/source/src/bgpd/bgpd.h:133: first defined here --- pkgs/servers/openbgpd/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/servers/openbgpd/default.nix b/pkgs/servers/openbgpd/default.nix index 20b8699aef54..dc39a81dccff 100644 --- a/pkgs/servers/openbgpd/default.nix +++ b/pkgs/servers/openbgpd/default.nix @@ -35,6 +35,12 @@ in stdenv.mkDerivation rec { ./autogen.sh ''; + # Workaround build failure on -fno-common toolchains like upstream + # gcc-10. Otherwise build fails as: + # ld: bgpd-rde_peer.o:/build/source/src/bgpd/bgpd.h:133: multiple definition of `bgpd_process'; + # bgpd-bgpd.o:/build/source/src/bgpd/bgpd.h:133: first defined here + NIX_CFLAGS_COMPILE = "-fcommon"; + meta = with lib; { description = "A free implementation of the Border Gateway Protocol, Version 4. It allows ordinary machines to be used as routers exchanging routes with other systems speaking the BGP protocol";