Merge pull request #172996 from trofi/workaround-fno-common-for-egoboo
egoboo: add -fcommon workaround
This commit is contained in:
commit
8a18533744
1 changed files with 5 additions and 0 deletions
|
@ -45,6 +45,11 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
*/
|
||||
|
||||
# Workaround build failure on -fno-common toolchains like upstream
|
||||
# gcc-10. Otherwise build fails as:
|
||||
# ld: mad.o:(.bss+0x233800): multiple definition of `tile_dict'; camera.o:(.bss+0x140): first defined here
|
||||
NIX_CFLAGS_COMPILE = "-fcommon";
|
||||
|
||||
NIX_LDFLAGS = "-lm";
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in a new issue