Valentin Churavy
Valentin Churavy
Thanks could you also add a test?
What's your version of Julia? If it's master it's likely a version of https://github.com/JuliaLang/julia/issues/53431
> I wasn't sure where to put this script but contrib seems like a good place for now. The script is experimental but this branch is now pretty complete and...
@nanosoldier `runtests(ALL, vs = ":master")`
Julia 1.10 will likely become an LTS release once 1.11 has been released. We will of course see if we can fix this in a patch release, but performance regression...
If `paths` were more than just strings we could handle this elegantly. I can't find the issue for that just now. We could perhaps handle the `@depot` handling during relocation....
I don't disagree. But having the cost of prefix checking before operations in the file handling code seems suboptimal. I kinda want it to return a `DepotPath("..../...")` object that we...
Reminder to myself for eventual review. We need to make sure that the results are not leaked into the compilation cache. https://discourse.julialang.org/t/any-existing-efforts-on-cross-compiling-julia-programs-across-different-platforms/118253/3?u=vchuravy
Note that `handle_signals=0` is an unsupported option, and its use is discouraged (x-ref: #50278 #58464) Can you expand a bit more on your use-case and how are you triggering this?
So your issue is similar to https://github.com/JuliaLang/julia/blob/8567a3a10f4b746b91bf406bfe3171c3399aed8d/test/gcext/gcext.c#L608 Where this data-structure is manually initialized. Yeah that should be fixed.