mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 13:16:40 +03:00
oxefmsynth: fix
Well, it wasn't really broken, just emitting a zillion narrowing warnings in generated code. Apparently "-Wno-narrowing" is how the modern compilers like you to ask them to tone it down.
This commit is contained in:
parent
9a23237031
commit
5449d04a6b
@ -22,7 +22,7 @@ in stdenv.mkDerivation rec {
|
|||||||
sha256 = "1rk71ls33a38wx8i22plsi7d89cqqxrfxknq5i4f9igsw1ipm4gn";
|
sha256 = "1rk71ls33a38wx8i22plsi7d89cqqxrfxknq5i4f9igsw1ipm4gn";
|
||||||
};
|
};
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-Wno-error=narrowing" ];
|
NIX_CFLAGS_COMPILE = [ "-Wno-narrowing" ];
|
||||||
|
|
||||||
buildFlags = [ "VSTSDK_PATH=${vst-sdk}/VST2_SDK" ];
|
buildFlags = [ "VSTSDK_PATH=${vst-sdk}/VST2_SDK" ];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user