From 160b37b70f7d38f2f8ce7fb156f1859e50f9953b Mon Sep 17 00:00:00 2001 From: Arthur Eubanks Date: Tue, 15 Mar 2022 16:52:50 -0700 Subject: [PATCH] Don't include clang package's libstdc++.so in sanitizer builds LLVM binaries no longer need libstdc++.so as of https://crrev.com/c/3513603. Change-Id: I00c18e3d24167a8edda1b0a25a9ef00c0c2bde52 Bug: chromium:1286289 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/255641 Reviewed-by: Mirko Bonadei Reviewed-by: Harald Alvestrand Commit-Queue: Mirko Bonadei Cr-Commit-Position: refs/heads/main@{#36212} --- webrtc.gni | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/webrtc.gni b/webrtc.gni index c4a62fc548..86803cd966 100644 --- a/webrtc.gni +++ b/webrtc.gni @@ -522,16 +522,6 @@ template("rtc_test") { } } - if (using_sanitizer) { - if (is_linux) { - if (!defined(invoker.data)) { - data = [] - } - data += - [ "//third_party/llvm-build/Release+Asserts/lib/libstdc++.so.6" ] - } - } - # TODO(crbug.com/webrtc/13556): Adding the .app folder in the runtime_deps # shoulnd't be necessary. this code should be removed and the same solution # as Chromium should be used.