package earlybird

  1. Overview
  2. Docs
OCaml debug adapter

Install

Dune Dependency

Authors

Maintainers

Sources

earlybird-1.3.3.tbz
sha256=f0861b655d79f5d982a5bbf1db7fa2bddeeccb4903f622783a9b6d534dc63ae9
sha512=df95c16b533883eddda30143ef372c133caa43f3b1d2f382402bd335cf8f685c8089ba2f2a60d9c557ede2900145c6c5a0a7688384730b47cc874835e3486095

README.md.html

OCaml earlybird

OCaml debug adapter.

Installation

opam install earlybird

Usage

VS Code

See Debugging OCaml programs (experimental) in VSCode OCaml Platform README. This requires VSCode OCaml Platform 1.13 or newer.

Troubleshooting

Breakpoints not hit with (lang dune 3.0) and above

Change to (lang dune 3.7) or above and add (map_workspace_root false) to your dune-project. See dune documentation for more information.

Examples

utop

Screen capture of debugging utop.

Launch configuration used:

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "test_program",
            "type": "ocaml.earlybird",
            "request": "launch",
            "stopOnEntry": true,
            "console": "integratedTerminal",
            "program": "${workspaceFolder}/_build/default/examples/interact/test_program.bc",
            "onlyDebugGlob": "<${workspaceFolder}/**/*>",
            "yieldSteps": 1024,
            "cwd": "${workspaceFolder}"
        }
    ]
}
OCaml

Innovation. Community. Security.