What is Linux utility to mangle a C++ symbol name?
That’s how g++ mangles names. You might implement those mangling rules on your program. Another (crazy) solution would be to list all of the symbols in the library you want to use (it’s not so difficult if you understand the format), demangle them all, and search your function’s name in that list. The advantage with … Read more