Merge pull request #282673 from wegank/coinmp-darwin

CoinMP: fix build with clang 16
This commit is contained in:
Weijia Wang 2024-01-24 00:35:35 +01:00 committed by GitHub
commit f5d0ff1f0e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,6 +11,10 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
env = lib.optionalAttrs stdenv.cc.isClang {
CXXFLAGS = "-std=c++14";
};
hardeningDisable = [ "format" ];
meta = with lib; {