Revert "[scripts/symbol] Switch to clang-r416183d"

Revert "Switch to clang-r416183d"

Revert submission 1737013-switch-to-clang-r416183d

Bug: http://b/191276541
Bug: http://b/189328402

Reason for revert: Breaks renderscript_mac build
Reverted Changes:
I25142ddaa:[scripts/symbol] Switch to clang-r416183d
If11e59638:Switch to clang-r416183d

Change-Id: I7961a8d2ed933f39308b80e39833fbcb1acc77e2
This commit is contained in:
Pirama Arumuga Nainar
2021-06-16 18:26:49 +00:00
parent 8b3774e428
commit e804a70bbf

View File

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