cuneiform: add -fcommon workaround

Workaround build failure on -fno-common toolchains like upstream
gcc-10. Otherwise build fails as:

ld: cgminer-driver-modminer.o:/build/source/miner.h:285:
multiple definition of `bitforce_drv'; cgminer-cgminer.o:/build/source/miner.h:285:
first defined here

+6
+6
pkgs/tools/graphics/cuneiform/default.nix
··· 20 }) 21 ]; 22 23 postPatch = '' 24 rm cuneiform_src/Kern/hhh/tigerh/h/strings.h 25 '';
··· 20 }) 21 ]; 22 23 + # Workaround build failure on -fno-common toolchains like upstream 24 + # gcc-10. Otherwise build fails as: 25 + # ld: CMakeFiles/rbal.dir/src/statsearchbl.cpp.o:(.bss+0x0): 26 + # multiple definition of `minrow'; CMakeFiles/rbal.dir/src/linban.c.o:(.bss+0xa3a): first defined here 27 + NIX_CFLAGS_COMPILE = "-fcommon"; 28 + 29 postPatch = '' 30 rm cuneiform_src/Kern/hhh/tigerh/h/strings.h 31 '';