Mantissa Bridge — VS Code extensionA tiny extension that exposes the active VS Code debug session to Mantissa's Debugger mode, so Mantissa can read your locals, evaluate expressions, and chart fixed-point variable pairs against their float reference while you're stopped at a breakpoint. What it doesWhen a debug session starts, the extension:
When the session ends, the server closes and the file is deleted. Mantissa scans for those files, finds the port, connects, and you see your session in the picker. Why?Mantissa used to ship a This extension lives one layer up — inside VS Code — so the install is identical on every OS, and it works for every DAP debugger (cppdbg / lldb / cppvsdbg / debugpy / CodeLLDB / …) instead of just gdb. InstallFrom the marketplace (preferred): search "Mantissa Bridge" in the Extensions panel. From a
That's it. There's nothing to configure. Start any debug session and Mantissa's "Search debugger sessions" will list it. Settings
SecurityThe TCP server binds to loopback only. There's no authentication —
any process on the same machine can read the discovery file and
connect, just as any process on your machine can already attach The extension never reaches out to the network. The full source is in
the Mantissa repo at |