Im building a online editor that can run C++ code. I want to implement a debugger and want to use WebAssembly to deliver it to the users browser and sandbox the environment. I'm wondering how feasible it is to compile something like the lldb source code into web assembly. If not, what are some alternatives I have of implementing a debugger?
I've tried compiling the entire llvm directory into web assembly, but am having trouble with using emscripten to do so.