demangler Questions
5
Solved
I have c++filt command to demangle a symbol, what is the tool to do the opposite and mangle a symbol name?
This would be useful if I were to want to call dlsym() on a mangled C++ function name. I'...
Intolerable asked 4/7, 2012 at 21:28
1
Solved
_ZNSaIwEC1Ev
_ZNSaIwEC2Ev
These two C++ symbols differ but are demangled (using C++filt or similar utility) into the same form:
std::allocator<wchar_t>::allocator()
std::allocator<wchar...
2
Solved
The documentation of abi::__cxa_demangle (such as https://gcc.gnu.org/onlinedocs/libstdc++/libstdc++-html-USERS-4.3/a01696.html) specifies that the second argument, char * output_buffer, need to be...
1
Solved
While compiling Swift on Mac machine, there is a dynamic library libswiftDemangle.dylib created. I need the dynamic library created on Linux machine as well, however, the dynamic library isn't crea...
Garfield asked 31/5, 2016 at 9:4
1
Solved
How do I set the gprof flags for the compiler and linker of GNU g++ in a CMakeLists.txt?
My current approach,
set(CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO} -pg")
set(CMAKE_CX...
2
Solved
5
Solved
I'm getting a fairly long and confusing link error, and would love it if I could just paste it into some textbox on some website and have the names un-mangled for me.
Does anyone know of suc...
1
© 2022 - 2024 — McMap. All rights reserved.