From ab90b71bffc0c26b8e156abe3fd3ec0de302cebe Mon Sep 17 00:00:00 2001 From: Ofek Date: Fri, 22 Mar 2024 11:11:52 +0200 Subject: [PATCH] Explicitly specify c++filt as demangler for clang bpf (#6272) Solve the issue mentioned here: https://github.com/compiler-explorer/compiler-explorer/pull/6228#issuecomment-2005622875 @partouf --- etc/config/c++.amazon.properties | 1 + etc/config/c.amazon.properties | 1 + 2 files changed, 2 insertions(+) diff --git a/etc/config/c++.amazon.properties b/etc/config/c++.amazon.properties index a251d609c4c..5f179425c70 100644 --- a/etc/config/c++.amazon.properties +++ b/etc/config/c++.amazon.properties @@ -1211,6 +1211,7 @@ group.clangbpf.isSemVer=true group.clangbpf.options=-target bpf group.clangbpf.objdumper=/opt/compiler-explorer/clang-trunk/bin/llvm-objdump group.clangbpf.objdumperType=llvm +group.clangbpf.demangler=/opt/compiler-explorer/gcc-13.2.0/bin/c++filt group.clangbpf.compilerCategories=clang compiler.bpfclangtrunk.exe=/opt/compiler-explorer/clang-trunk/bin/clang++ diff --git a/etc/config/c.amazon.properties b/etc/config/c.amazon.properties index a91655d1615..777b6320ed7 100644 --- a/etc/config/c.amazon.properties +++ b/etc/config/c.amazon.properties @@ -963,6 +963,7 @@ group.cclangbpf.isSemVer=true group.cclangbpf.options=-target bpf group.cclangbpf.objdumper=/opt/compiler-explorer/clang-trunk/bin/llvm-objdump group.cclangbpf.objdumperType=llvm +group.cclangbpf.demangler=/opt/compiler-explorer/gcc-13.2.0/bin/c++filt group.cclangbpf.compilerCategories=clang compiler.cbpfclangtrunk.exe=/opt/compiler-explorer/clang-trunk/bin/clang