Merge pull request #173993 from trofi/workaround-fno-common-for-mpc123

mpc123: add -fcommon workaround
This commit is contained in:
Sergei Trofimovich 2022-05-25 06:43:16 +00:00 committed by GitHub
commit 1473924321
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,6 +12,11 @@ stdenv.mkDerivation rec {
patches = [ ./use-gcc.patch ];
# Workaround build failure on -fno-common toolchains like upstream
# gcc-10. Otherwise build fails as:
# ld: /build/cc566Cj9.o:(.bss+0x0): multiple definition of `mpc123_file_reader'; ao.o:(.bss+0x40): first defined here
NIX_CFLAGS_COMPILE = "-fcommon";
buildInputs = [ gettext libmpcdec libao ];
installPhase =