Aaron Jacobs

Results 53 comments of Aaron Jacobs

Blocked by #13.

It's a bit hard to know what's happening here without you showing how you are calling `xrprof`, but keep in mind that it won't show the C/C++ code by default...

> by the way, a note on the minimum gcc compiler version would have helped - with old versions the Makefile does not work as it is This I can...

> now I see C++ stuff, I still have to learn to read it, but that's for me to do. You probably have "mangled" names that you will want to...

I don't know what could cause this, and a quick look at `JuliaCall` does not turn up anything suspicious. Some random thoughts: 1. Maybe Julia's JIT is involved here or...

Actually, now that I look at it more: `JuliaCall` embeds Julia using `dlopen()` and calls functions via symbol lookup. This is very strange to me, I'm not sure why it...

> I have a simple implementation locally that seems to work. Feel free to submit that as a PR. Even if it's only partial support it's good to have it...

But, some extremely *good* news about M1 macOS: according to [this Apple spec](https://developer.apple.com/documentation/xcode/writing_arm64_code_for_apple_platforms), ARM requires the use of frame pointers. These are just about the most helpful thing in the...

The (incomplete) remote unwinding support was removed from LLVM's `libunwind` on macOS: https://reviews.llvm.org/D57252 Otherwise all of the existing unwinding code would "just work" on macOS. Sad.

An list of changes that would need to be made for an MVP, from my recollection: * Content-type support (including negotiation, which is what the Python and Go clients do...