[scripts/symbol] Switch to clang-r416183d

Test: presubmit
Change-Id: I25142ddaa46446b8521382bfffd3cf12ff00bb86
This commit is contained in:
Pirama Arumuga Nainar
2021-06-14 14:23:15 -07:00
parent 62b113d654
commit 8b3774e428

View File

@@ -438,8 +438,8 @@ def CallCppFilt(mangled_symbol):
if not _CACHED_CXX_FILT: if not _CACHED_CXX_FILT:
toolchains = None toolchains = None
# TODO(b/187231324) do not hard-code prebuilt version number below # TODO(b/187231324) do not hard-code prebuilt version number below
if os.path.exists('./clang-r416183b/bin/llvm-cxxfilt'): if os.path.exists('./clang-r416183d/bin/llvm-cxxfilt'):
toolchains = ["./clang-r416183b/bin/llvm-cxxfilt"] toolchains = ["./clang-r416183d/bin/llvm-cxxfilt"]
if not toolchains: if not toolchains:
raise Exception("Could not find llvm-cxxfilt tool") raise Exception("Could not find llvm-cxxfilt tool")
_CACHED_CXX_FILT = sorted(toolchains)[-1] _CACHED_CXX_FILT = sorted(toolchains)[-1]