We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ed1ee7 commit 3d2e2bdCopy full SHA for 3d2e2bd
base/loading.jl
@@ -1392,6 +1392,10 @@ function run_extension_callbacks(pkgid::PkgId)
1392
extids = pop!(EXT_DORMITORY, pkgid, nothing)
1393
extids === nothing && return
1394
for extid in extids
1395
+ if in(extid.id.name, precompilation_stack) && !isprecompiled(extid.id)
1396
+ @warn "Dependency cycle detected in extension precompilation: $(join(precompilation_stack, " > ")) > $(extid.id.name)"
1397
+ continue
1398
+ end
1399
if extid.ntriggers > 0
1400
# indicate pkgid is loaded
1401
extid.ntriggers -= 1
0 commit comments