mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
Merge pull request #176852 from trofi/workaround-fno-common-for-fped
fped: add -fcommon workaround
This commit is contained in:
commit
b2e046efae
@ -14,6 +14,11 @@ stdenv.mkDerivation {
|
||||
sha256 = "0xv364a00zwxhd9kg1z9sch5y0cxnrhk546asspyb9bh58sdzfy7";
|
||||
};
|
||||
|
||||
# Workaround build failure on -fno-common toolchains:
|
||||
# ld: postscript.o:postscript.h:29: multiple definition of
|
||||
# `postscript_params'; fped.o:postscript.h:29: first defined here
|
||||
NIX_CFLAGS_COMPILE = "-fcommon";
|
||||
|
||||
# This uses '/bin/bash', '/usr/local' and 'lex' by default
|
||||
makeFlags = [
|
||||
"PREFIX=${placeholder "out"}"
|
||||
|
Loading…
Reference in New Issue
Block a user