--compiled-modules=no seems to take very very long. I am happy to use all precompiled packages which already have been precompiled in order to speed up things. I just want to skip new precompilations.
The fallback I know about is to add __precompile__(false) in all packages - but I would to activate it only on my dev setup, hence I would prefer a commandline argument to the julia command
Well, of course I didn’t make it up, I found it with
% julia --help | grep -A5 'compiled-modules'
--compiled-modules={yes*|no|existing|strict} Enable or disable incremental precompilation of
modules. The `existing` option allows use of existing
compiled modules that were previously precompiled,
but disallows creation of new precompile files.
The `strict` option is similar, but will error if no
precompile file is found.