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

PackageCompiler never ends on julia 1.11.0 with --threads=6

Open dpinol opened this issue 1 year ago • 0 comments

The following command never finishes on julia 1.11.0 (worked on julia 1.10.5). The precompile_statements_file can be any, even an empty file.

using PackageCompiler
create_sysimage(;sysimage_path="kk.so", precompile_statements_file="../kk.trace", sysimage_build_args=Cmd(["--threads=6"]))

The timer keeps on counting forever (CPU does not show any work done) [09m:10s] PackageCompiler: compiling incremental system image

The fix is not specifying --threads=6 on sysimage_build_args

dpinol avatar Oct 10 '24 10:10 dpinol