diff --git a/shared/sx/ocaml_bridge.py b/shared/sx/ocaml_bridge.py index da17dd5..076b742 100644 --- a/shared/sx/ocaml_bridge.py +++ b/shared/sx/ocaml_bridge.py @@ -265,11 +265,9 @@ class OcamlBridge: _logger.info("Loaded %d definitions from .sx files into OCaml kernel (%d skipped)", count, skipped) - # Auto-compile disabled for now — compiler needs more features - # (closures, scope ops, etc.) before it can safely replace - # live functions. Infrastructure is ready: - # await self._send('(vm-compile)') - # await self._read_until_ok(ctx=None) + # VM auto-compile ready but disabled until compiler handles + # all SX features and CEK fallback works correctly. + # Enable with: await self._send('(vm-compile)') except Exception as e: _logger.error("Failed to load .sx files into OCaml kernel: %s", e) self._components_loaded = False # retry next time