From ea3dbc0c58844e0ae5f1d85d988796e4fafca930 Mon Sep 17 00:00:00 2001 From: Tracy Wadleigh Date: Thu, 24 Oct 2019 14:16:29 -0700 Subject: [PATCH] Track a distinct compile cache for julia-debug. Addresses #33668. --- base/loading.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/loading.jl b/base/loading.jl index a4a40300c97c6..fcdc3a64fe0c5 100644 --- a/base/loading.jl +++ b/base/loading.jl @@ -633,7 +633,7 @@ end cache_file_entry(pkg::PkgId) = joinpath( "compiled", - "v$(VERSION.major).$(VERSION.minor)", + "v$(VERSION.major).$(VERSION.minor)" * (JLOptions().debug_level > 1 ? "-debug" : ""), pkg.uuid === nothing ? "" : pkg.name), pkg.uuid === nothing ? pkg.name : package_slug(pkg.uuid)