Skip to content

Commit

Permalink
Merge pull request #290673 from simonhollingshead/easyloggingpp-gtest
Browse files Browse the repository at this point in the history
easyloggingpp: Build with C++14 instead of C++11.
  • Loading branch information
lukegb authored Feb 23, 2024
2 parents 03d5be4 + 61ac3fb commit 701f65d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/libraries/easyloggingpp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [cmake];
buildInputs = [gtest];
cmakeFlags = [ "-Dtest=ON" ];
env.NIX_CFLAGS_COMPILE = "-std=c++11" +
env.NIX_CFLAGS_COMPILE = "-std=c++14" +
lib.optionalString stdenv.isLinux " -pthread";
postInstall = ''
mkdir -p $out/include
Expand Down

0 comments on commit 701f65d

Please sign in to comment.