Merge pull request #36763 from xeji/kore

kore: fix build with gcc7
This commit is contained in:
Graham Christensen
2018-03-10 13:16:25 -05:00
committed by GitHub

View File

@@ -20,6 +20,9 @@ stdenv.mkDerivation rec {
makeFlags = [ "PREFIX=$(out)" ];
# added to fix build w/gcc7
NIX_CFLAGS_COMPILE = [ "-Wno-error=pointer-compare" ];
enableParallelBuilding = true;
meta = with stdenv.lib; {