Skip to content

Commit b166cf6

Browse files
ararslanStefanKarpinski
authored andcommitted
Capture --inline value in Base.julia_cmd() (#29858)
1 parent 5922b5e commit b166cf6

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

base/util.jl

+6-1
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,12 @@ function julia_cmd(julia=joinpath(Sys.BINDIR::String, julia_exename()))
420420
else
421421
"yes"
422422
end
423-
`$julia -C$cpu_target -J$image_file --compile=$compile --depwarn=$depwarn`
423+
inline = if opts.can_inline == 0
424+
"no"
425+
else
426+
"yes"
427+
end
428+
`$julia -C$cpu_target -J$image_file --compile=$compile --depwarn=$depwarn --inline=$inline`
424429
end
425430

426431
function julia_exename()

test/cmdlineargs.jl

+6
Original file line numberDiff line numberDiff line change
@@ -560,3 +560,9 @@ let exename = `$(Base.julia_cmd()) --startup-file=no`
560560
end
561561
end
562562
end
563+
564+
# Issue #29855
565+
for yn in ("no", "yes")
566+
exename = `$(Base.julia_cmd()) --startup-file=no --inline=$yn`
567+
@test occursin("--inline=$yn", first(writereadpipeline("Base.julia_cmd()", exename)))
568+
end

0 commit comments

Comments
 (0)