mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-18 18:14:42 +00:00
Merge pull request #176429 from trofi/workaround-fno-common-for-dieharder
dieharder: add -fcommon workaround
This commit is contained in:
commit
120cde3c5d
@ -15,6 +15,11 @@ stdenv.mkDerivation rec {
|
||||
./stdint.patch
|
||||
];
|
||||
|
||||
# Workaround build failure on -fno-common toolchains:
|
||||
# ld: include/dieharder/parse.h:21: multiple definition of `splitbuf';
|
||||
# include/dieharder/parse.h:21: first defined here
|
||||
NIX_CFLAGS_COMPILE = "-fcommon";
|
||||
|
||||
buildInputs = [ gsl ];
|
||||
|
||||
passthru = {
|
||||
|
Loading…
Reference in New Issue
Block a user