Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions src/julia/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -482,11 +482,19 @@ def __init__(self, init_julia=True, jl_init_path=None, runtime=None,
logger.debug("use_custom_sysimage = %r", use_custom_sysimage)
logger.debug("compiled_modules = %r", options.compiled_modules)
if not (
options.compiled_modules == "no"
or is_compatible_python
is_compatible_python
or use_custom_sysimage
):
raise UnsupportedPythonError(jlinfo)
if options.compiled_modules in (True, "yes"):
raise UnsupportedPythonError(jlinfo)
elif options.compiled_modules in (False, "no"):
pass
else:
warnings.warn(
"Statically linked Python interpreter detected, setting `compiled_modules=False` automatically."
)
options.compiled_modules = "no"


self.api.init_julia(options)

Expand Down
4 changes: 2 additions & 2 deletions src/julia/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def yes_no_etc(*etc):
compile: {True, False, 'yes', 'no', 'all', 'min'}
Enable or disable JIT compiler, or request exhaustive compilation.

compiled_modules: {True, False, 'yes', 'no'}
compiled_modules: {True, False, 'yes', 'no', 'auto'}
Enable or disable incremental precompilation of modules.

depwarn: {True, False, 'yes', 'no', 'error'}
Expand Down Expand Up @@ -165,7 +165,7 @@ class JuliaOptions(object):

sysimage = String("sysimage")
bindir = String("bindir")
compiled_modules = Choices("compiled_modules", yes_no_etc())
compiled_modules = Choices("compiled_modules", yes_no_etc("auto"))
compile = Choices("compile", yes_no_etc("all", "min"))
depwarn = Choices("depwarn", yes_no_etc("error"))
warn_overwrite = Choices("warn_overwrite", yes_no_etc())
Expand Down