Hi, I'm developing Emacs using its native compilation on macOS, which is based on libgccjit.
In this context, I'm currently failing to get .eln files (= .so, .dylib, .dll depending on the platform) with debug info. This has probably its roots in the special handling of DWARF under macOS, a long-winded story leading to dSYM bundles... My question is: can I somehow configure libgccjit in a way that keeps the .o file that was used to produce the resulting .dylib, like it keeps/writes the various intermediate files that one can get? If that's possible, my hope would be to extract the debug info from the .o using dsymutil and use that with the .dylib. TIA!