Merge pull request #174027 from trofi/workaround-fno-common-for-openbgpd

openbgpd: add -fcommon workaround
This commit is contained in:
Sandro 2022-05-25 00:33:35 +02:00 committed by GitHub
commit 2c97207aba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";