From 04f7cc3880912abb738d3d3bc20e7622a211f25e Mon Sep 17 00:00:00 2001 From: sterni Date: Thu, 7 Oct 2021 21:57:09 +0200 Subject: fix(3p): resolve linker issues with clang-compiled C++ packages The point where this broke is likely when llvmPackages_11.stdenv started respecting stdenv.hostPlatform.linker and thus using GNU binutils' ld.bfd for linking. That linker can't deal with clang's C++ ABI. To fix this we introduce a modified version of llvmPackages_11.stdenv which uses llvmPackages_11.bintools for linking purposes (I also aim to upstream this in some form, but am not sure about the details atm, so we'll just do this in the tvl overlay for now). This is the precondition for getting our C++ packages in //third_party to work again. Additionally the following fixes were necessary: * abseil-cpp needed to be updated (by overriding the version from nixpkgs for now, since I can't update the subtree on my own) to fulfill grpc's requirements (grpc 1.41.0 needs abseil-cpp LTS 20210324). * gtest needs a patch from nixpkgs which fixes the path to its include directory for CMake. * We need to build re2 with clang as well, otherwise linking will fail. Fixes b/132. Change-Id: I7b64579fe96451547babe070fd35db398581e49d Reviewed-on: https://cl.tvl.fyi/c/depot/+/3701 Tested-by: BuildkiteCI Reviewed-by: lukegb Reviewed-by: tazjin --- third_party/gtest/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'third_party/gtest') diff --git a/third_party/gtest/default.nix b/third_party/gtest/default.nix index 5491450aa3..70516853ed 100644 --- a/third_party/gtest/default.nix +++ b/third_party/gtest/default.nix @@ -1,7 +1,7 @@ { pkgs, ... }: (pkgs.gtest.override { - stdenv = pkgs.llvmPackages_11.libcxxStdenv; + stdenv = pkgs.fullLlvm11Stdenv; }).overrideAttrs(_: { src = pkgs.fetchFromGitHub { owner = "google"; @@ -9,5 +9,4 @@ rev = "9dce5e5d878176dc0054ef381f5c6e705f43ef99"; sha256 = "05xi61j7j251dzkgk9965lqpbacsy44iblzql941kw9d4nk0q6jl"; }; - patches = []; }) -- cgit 1.4.1