I am mostly using Julia 1.11.2 but sometimes 1.10.7.
I have some code where a few function definitions cause a precompile warning and then the precompile fails. I have not been able to figure out a way to fix these functions.
This code is in a package we have created. This package has a main module and submodules. In reading the manual section 17.3 Module initialization and precompilation
, it states that I can put the command precompile(false) just after the definition of the module. Does this only apply to the main package module or can it be specific to a submodule in the package.
Ideally I would like to be able to turn precompilation off for just the offending functions, but it seems this is not possible?