From 8233d2e278831af94f6b28785655b8eb7e207169 Mon Sep 17 00:00:00 2001 From: Anton Pozharskiy Date: Mon, 13 Jul 2026 09:33:58 +0200 Subject: [PATCH] don't run startup file --- src/compiling.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiling.jl b/src/compiling.jl index 4ad5748..4c060d5 100644 --- a/src/compiling.jl +++ b/src/compiling.jl @@ -332,7 +332,7 @@ function _compile_jl_options_shim(jl_options::Dict{String,String}; verbose::Bool # Validate by running julia with the same flags. if !isempty(jl_options) julia_bin = joinpath(Sys.BINDIR, "julia") - validate_cmd = `$julia_bin` + validate_cmd = `$julia_bin --startup-file=no` for (key, value) in jl_options validate_cmd = `$validate_cmd --$(key)=$(value)` end