mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
io: fix gcc5 build
c11 inline semantics breaks the build See https://github.com/stevedekorte/io/issues/316 and https://hydra.nixos.org/build/33606216/nixlog/1/raw
This commit is contained in:
parent
6745a568e7
commit
3fe86ac582
@ -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
Block a user