mps: fix build with gcc7

This commit is contained in:
Piotr Bogdan 2018-03-09 12:36:45 +00:00
parent 6625fb8a67
commit f28e94a179

View File

@ -12,6 +12,12 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ sqlite ];
# needed for 1.116.0 to build with gcc7
NIX_CFLAGS_COMPILE = [
"-Wno-implicit-fallthrough"
];
meta = {
description = "A flexible memory management and garbage collection library";
homepage = "https://www.ravenbrook.com/project/mps";