Merge pull request #176086 from trofi/workaround-fno-common-for-perlPackages.MathPari

perlPackages.MathPari: add -fcommon workaround
This commit is contained in:
Sandro 2022-06-03 17:12:20 +02:00 committed by GitHub
commit 5bb2597429
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13436,6 +13436,10 @@ let
url = "https://pari.math.u-bordeaux.fr/pub/pari/OLD/2.1/pari-${pariversion}.tgz";
sha256 = "1yjml5z1qdn258qh6329v7vib2gyx6q2np0s5ybci0rhmz6z4hli";
};
# Workaround build failure on -fno-common toolchains:
# ld: libPARI/libPARI.a(compat.o):(.bss+0x8): multiple definition of
# `overflow'; Pari.o:(.bss+0x80): first defined here
NIX_CFLAGS_COMPILE = "-fcommon";
preConfigure = "cp ${pari_tgz} pari-${pariversion}.tgz";
makeMakerFlags = "pari_tgz=pari-${pariversion}.tgz";
src = fetchurl {