Merge pull request #14221 from joachifm/fix-io-build-for-staging
io: fix gcc5 build
This commit is contained in:
commit
c9f8d18fb1
|
@ -18,7 +18,8 @@ stdenv.mkDerivation {
|
|||
freeglut libsamplerate pcre libevent libedit yajl
|
||||
];
|
||||
|
||||
cmakeFlags = [ "-DCMAKE_BUILD_TYPE=release" ];
|
||||
# for gcc5; c11 inline semantics breaks the build
|
||||
NIX_CFLAGS_COMPILE = "-fgnu89-inline";
|
||||
|
||||
meta = {
|
||||
description = "Io programming language";
|
||||
|
|
Loading…
Reference in New Issue