Open vchuravy opened 11 months ago
In the past we used to ship the debug
variants, but we stopped doing that since it was blowing up the download size. Our download infrastructure is a lot more robust now, and we could just bring it back.
Just thinking out aloud - Is it possible to provide it as a JLL through Yggdrasil?
-viral
Yeah the goal would be to have it as a seperate variant of the libjulia_jll so that if one is running a debug build of Julia packages that depend on libjulia_jll don't spuriously fail.
My idea was always that users needing to go that far in debugging a CxxWrap-based package would compile everything themselves and do that based on the debug version of Julia, but maybe that becomes a bit cumbersome as the ecosystem grows. Can the logic that is used to find the correct artifact also detect if Julia is a debug version?
On a debug build of Julia instaling
CxxWrap
fails with:I see that the
libjulia
provides both the debug and non debug library, but it should probably provide a variant such that JLLs depending on it can be used on a debug build of Julia.