I'd like to see if Julia is running in code-coverage mode or not. In the REPL I can do the following:
julia> a = cglobal(:(jl_compileropts))
Ptr{Void} @0x00007fa3e01bbc90
The struct is defined like so:
https://github.com/JuliaLang/julia/blob/aab2c6e67b5aaee7f23bc5a52897f7219473c153/src/julia.h#L1330-L1338
How can I access the code_coverage member?
Thanks,
Steve
