-
-
Notifications
You must be signed in to change notification settings - Fork 194
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
compile_incremental overwrites #201
Comments
This is expected as far as I am aware, since PackageCompiler will compile the system image into its directory. One thing you can do is refer to the following code: PackageCompiler.jl/src/incremental.jl Lines 114 to 145 in 54c0c12
and change it manually (essentially, replicate the compile_incremental method with whatever output directory you want). A PR could be made to amend PackageCompiler.jl/src/PackageCompiler.jl Lines 62 to 66 in 8987c26
perhaps with a keyword argument to change the parent directory? |
If run in separate commands, the latter
compile_incremental
will overwrite the sysimge.g.
julia
without the-J /path/to/sysimg
switch, docompile_incremental(:Plots)
-J
switch, go to the pkg prompt]
dost
:-J
switch, compile another package, e.g.compile_incremental(:Makie)
, exit, add the-J
switch, and pkg>st returnsLooks like the precompiled Plots is overwritten. Is this the expected behavior/is there an option to add to existing sysimg without overwriting? Thanks!
The text was updated successfully, but these errors were encountered: