From 25fc9204c72d9bc472743c0791e848f485be033a Mon Sep 17 00:00:00 2001 From: KristofferC Date: Fri, 24 Mar 2023 11:33:49 +0100 Subject: [PATCH] move out LazyArtifacts from the sysimage --- base/sysimg.jl | 3 --- pkgimage.mk | 2 +- test/precompile.jl | 2 +- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/base/sysimg.jl b/base/sysimg.jl index d64b463e9a957..fe87b7bde97a3 100644 --- a/base/sysimg.jl +++ b/base/sysimg.jl @@ -76,9 +76,6 @@ let # 6-depth packages :Pkg, - - # 7-depth packages - :LazyArtifacts, ] # PackageCompiler can filter out stdlibs so it can be empty maxlen = maximum(textwidth.(string.(stdlibs)); init=0) diff --git a/pkgimage.mk b/pkgimage.mk index 8d4d522f224d3..369f450d25611 100644 --- a/pkgimage.mk +++ b/pkgimage.mk @@ -117,7 +117,7 @@ $(eval $(call sysimg_builder,Downloads,ArgTools FileWatching LibCURL NetworkOpti $(eval $(call sysimg_builder,Pkg,Dates LibGit2 Libdl Logging Printf Random SHA UUIDs)) # Markdown REPL # 7-depth packages -$(eval $(call sysimg_builder,LazyArtifacts,Artifacts Pkg)) +$(eval $(call pkgimg_builder,LazyArtifacts,Artifacts Pkg)) $(eval $(call pkgimg_builder,SparseArrays,Libdl LinearAlgebra Random Serialization)) # SuiteSparse_jll diff --git a/test/precompile.jl b/test/precompile.jl index 9ca3d26864346..ec35be1a5c30a 100644 --- a/test/precompile.jl +++ b/test/precompile.jl @@ -396,7 +396,7 @@ precompile_test_harness(false) do dir end for s in [:ArgTools, :Artifacts, :Base64, :CompilerSupportLibraries_jll, :CRC32c, :Dates, :Distributed, :Downloads, :FileWatching, :Future, :InteractiveUtils, :libblastrampoline_jll, - :LazyArtifacts, :LibCURL, :LibCURL_jll, :LibGit2, :Libdl, :LinearAlgebra, + :LibCURL, :LibCURL_jll, :LibGit2, :Libdl, :LinearAlgebra, :Logging, :Markdown, :Mmap, :MozillaCACerts_jll, :NetworkOptions, :OpenBLAS_jll, :Pkg, :Printf, :p7zip_jll, :REPL, :Random, :SHA, :Serialization, :SharedArrays, :Sockets, :TOML, :Tar, :Test, :UUIDs, :Unicode,