about summary refs log tree commit diff
path: root/third_party/grpc
diff options
context:
space:
mode:
authorsterni <sternenseemann@systemli.org>2021-11-03T19·39+0100
committersterni <sternenseemann@systemli.org>2021-11-07T21·05+0000
commit9b6497e5da2c29bfc109a62390071c94684e78d5 (patch)
tree8ce32d8b5232d0e7ba2048fe6da92c992a1b3366 /third_party/grpc
parent4f71638e49dee1c45dee4a85357067eae9472460 (diff)
chore(3p): bump NixOS channels to 2021-11-03 r/3014
* //third_party/{abseil_cpp, grpc}: fix linker problem by passing the
  C++ standard to use explicitly. nixpkgs upstream stopped passing this
  to abseil between bumps and the way this problem manifests itself is
  linker errors, because… C++, I suppose.

Change-Id: I932ea70befee90984ae2e575dfc23f5c601cd289
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3769
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'third_party/grpc')
-rw-r--r--third_party/grpc/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/third_party/grpc/default.nix b/third_party/grpc/default.nix
index c41e66e583..2ef67d4028 100644
--- a/third_party/grpc/default.nix
+++ b/third_party/grpc/default.nix
@@ -8,5 +8,6 @@
 }).overrideAttrs(orig: rec {
   cmakeFlags = orig.cmakeFlags ++ [
     "-DCMAKE_CXX_STANDARD_REQUIRED=ON"
+    "-DCMAKE_CXX_STANDARD=17"
   ];
 })