PkgCacheInspector.jl icon indicating copy to clipboard operation
PkgCacheInspector.jl copied to clipboard

Inspect the contents of Julia package cache files

Results 8 PkgCacheInspector.jl issues
Sort by recently updated
recently updated
newest added

Bumps [julia-actions/setup-julia](https://github.com/julia-actions/setup-julia) from 1 to 2. Release notes Sourced from julia-actions/setup-julia's releases. v2.0.0 - Update to Node20 What's Changed update to node20 by @​ranocha in julia-actions/setup-julia#209 Note the rationale for...

dependencies

For instance ``` julia> info_cachefile("Pkg") Base.parse_image_targets(clone_targets) = Base.ImageTarget[generic; flags=0; features_en=()] ```

(EDIT: Oops, sorry, I accidentally hit shift-enter while editing the title.) In the following report, PkgCacheInspector shows my 16% of the external methods for my package, MuttsDicts, as belonging to...

Not sure if related to #19, because also fails on `1.9.1`. When loading a stdlib like `Printf`, which is a dependency of `PkgCacheInspector.jl`, I get the error ```julia julia> info_cachefile("Printf")...

Same error occurs also on `v1.9.3, v1.10-beta3`, but it works on `v1.9.1`. Here I tested with the `DocStringExtensions` dependency of `PkgCacheInsepctor.jl`. ```julia PkgCacheInspector.jl|main ⇒ jl --project _ _ _ _(_)_...

My PR in #3 is a start, but we could should allow the user to find the cached native code per function, in particular since there might by codegen differences...

enhancement

``` julia> clone_targets("/home/vchuravy/.julia/compiled/v1.10/SnoopPrecompile/TcfDT_z6cWT.ji") ┌ Info: Target │ name = "znver2" │ flags = 0 │ feature_en = │ 44-element Vector{UInt8}: │ 0x03 │ 0x32 │ 0xd8 │ 0x36 │ ⋮...

The following PRs have added extra arguments to two C methods that are used by `info_cachefile`, which this PR fixes. - https://github.com/JuliaLang/julia/pull/52123: Added the `int ignore_native` argument to jl_restore_package_image_from_file -...