Jayatubi
Jayatubi
How about the "libunwind.so" which shipped with 5.0?
Is there any way to make libunwind to work with sigaction? All the samples I could found on the internet are about the current stack only.
And I've made the libcorkscrew works on Android 5, because I need unwind_backtrace_signal_arch, by extract the code from AOSP and compile it statically into my project. It works well but...
After review the code I found the `b_exec` has already handled pre-compiled AST internally. However, since `b_exec` is not public I have to expose it manually somehow.
Yes. What I want to is to execute the bytecode from memory. I have wrapped another interface `v7_exec_bytes` to accept another `src_len` argument, instead of the `strlen`. It would be...