From d18b7865f2a1211859ee2f3a508f14b060421760 Mon Sep 17 00:00:00 2001 From: Fons van der Plas Date: Mon, 13 Feb 2023 15:26:31 +0100 Subject: [PATCH] julia_cmd() docstring: include pkgimages (#48392) (cherry picked from commit 4a75129efe00ebe1880e3ab86f6901524ca063bc) --- base/util.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/base/util.jl b/base/util.jl index 957e30d774aab..76077a919f944 100644 --- a/base/util.jl +++ b/base/util.jl @@ -137,7 +137,7 @@ See also [`print`](@ref), [`println`](@ref), [`show`](@ref). Return a julia command similar to the one of the running process. Propagates any of the `--cpu-target`, `--sysimage`, `--compile`, `--sysimage-native-code`, -`--compiled-modules`, `--inline`, `--check-bounds`, `--optimize`, `-g`, +`--compiled-modules`, `--pkgimages`, `--inline`, `--check-bounds`, `--optimize`, `-g`, `--code-coverage`, `--track-allocation`, `--color`, `--startup-file`, and `--depwarn` command line arguments that are not at their default values. @@ -151,6 +151,8 @@ Among others, `--math-mode`, `--warn-overwrite`, and `--trace-compile` are notab !!! compat "Julia 1.9" The keyword argument `cpu_target` was added. + + The flag `--pkgimages` was added in Julia 1.9. """ function julia_cmd(julia=joinpath(Sys.BINDIR, julia_exename()); cpu_target::Union{Nothing,String} = nothing) opts = JLOptions()