mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
Merge pull request #177088 from trofi/workaround-fno-common-for-coriander
coriander: add -fcommon workaround
This commit is contained in:
commit
ba4453f804
@ -22,6 +22,11 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "0l6hpfgy5r4yardilmdrggsnn1fbfww516sk5a90g1740cd435x5";
|
||||
};
|
||||
|
||||
# Workaround build failure on -fno-common toolchains:
|
||||
# ld: subtitles.o:src/coriander.h:110: multiple definition of
|
||||
# `main_window'; main.o:src/coriander.h:110: first defined here
|
||||
NIX_CFLAGS_COMPILE = "-fcommon";
|
||||
|
||||
preConfigure = ''
|
||||
cp ${automake}/share/automake-*/mkinstalldirs .
|
||||
'';
|
||||
|
Loading…
Reference in New Issue
Block a user