On Julia 1.10 or higher, you might see the following message:

This may repeat. If it continues to repeat with no hints that it will resolve itself, you may have a "precompilation hang" that requires fixing. Even if it's transient, you might prefer to resolve it so that users will not be bothered by this warning. This page walks you through how to analyze and fix such issues.
If you follow the advice and hitCtrl-C, you might see
^C Interrupted: Exiting precompilation... 1 dependency had warnings during precompilation:┌ Test1 [ac89d554-e2ba-40bc-bc5c-de68b658c982]│ [pid 2745] waiting for IO to finish:│ Handle type uv_handle_t->data│ timer 0x55580decd1e0->0x7f94c3a4c340This message conveys two key pieces of information:
Test1, a dependency ofTest2 (the package we were trying to load withusing Test2)Test1, Julia created aTimer object (use?Timer if you're unfamiliar with Timers) which is still open; until that closes, the process is hungIf this is enough of a hint for you to figure out howtimer = Timer(args...) is being created, one good solution is to addwait(timer) iftimer eventually finishes on its own, orclose(timer) if you need to force-close it, before the finalend of the module.
However, there are cases that may not be that straightforward. Usually the best option is to start by determining whether the hang is due to code in Test1 or whether it is due to one of Test1's dependencies:
Pkg.add("Aqua") and useAqua.test_persistent_tasks. This should help you identify which package is causing the problem, after which the instructionsbelow should be followed. If needed, you can create aPkgId asBase.PkgId(UUID("..."), "Test1"), where... comes from theuuid entry inTest1/Project.toml.To manually diagnose:
Pkg.develop("Test1")included or defined inTest1,except theusing/import statements.using Test2 (or evenusing Test1 assuming that hangs too) againNow we arrive at a fork in the road: either
Use a binary search to identify the problematic dependency: start by commenting out half your dependencies, then when you isolate which half is responsible comment out half of that half, etc. (You don't have to remove them from the project, just comment out theusing/import statements.)
Once you've identified a suspect (here we'll call itThePackageYouThinkIsCausingTheProblem), first try precompiling that package. If it also hangs during precompilation, continue chasing the problem backwards.
However, most likelyThePackageYouThinkIsCausingTheProblem will precompile fine. This suggests it's in the functionThePackageYouThinkIsCausingTheProblem.__init__, which does not run during precompilation ofThePackageYouThinkIsCausingTheProblem butdoes in any package that loadsThePackageYouThinkIsCausingTheProblem. To test this theory, set up a minimal working example (MWE), something like
(@v1.10) pkg> generate MWE Generating project MWE: MWE\Project.toml MWE\src\MWE.jlwhere the source code ofMWE.jl is
module MWEusing ThePackageYouThinkIsCausingTheProblemendand you've addedThePackageYouThinkIsCausingTheProblem to MWE's dependencies.
If that MWE reproduces the hang, you've found your culprit:ThePackageYouThinkIsCausingTheProblem.__init__ must be creating theTimer object. If the timer object can be safelyclosed, that's a good option. Otherwise, the most common solution is to avoid creating the timer whileany package is being precompiled: add
ccall(:jl_generating_output, Cint, ()) == 1 && return nothingas the first line ofThePackageYouThinkIsCausingTheProblem.__init__, and it will avoid doing any initialization in any Julia process whose purpose is to precompile packages.
Search your package for suggestive words (here like "Timer") and see if you can identify where the problem is being created. Note that a methoddefinition like
maketimer() = Timer(timer -> println("hi"), 0; interval=1)is not problematic in and of itself: it can cause this problem only ifmaketimer gets called while the module is being defined. This might be happening from a top-level statement such as
const GLOBAL_TIMER = maketimer()or it might conceivably occur in aprecompile workload.
If you struggle to identify the causative lines, then consider doing a binary search: comment out sections of your package (orinclude lines to omit entire files) until you've reduced the problem in scope.
Settings
This document was generated withDocumenter.jl version 1.16.0 onThursday 20 November 2025. Using Julia version 1.12.2.