From 8e28f32d2ee906b1b807f3bc6a05c8985f5e8f18 Mon Sep 17 00:00:00 2001 From: Laytan Laats Date: Sun, 26 Jul 2026 19:05:08 +0200 Subject: [PATCH] clarify targets support --- core/debug/trace/doc.odin | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/debug/trace/doc.odin b/core/debug/trace/doc.odin index a2409caa4..b6044296d 100644 --- a/core/debug/trace/doc.odin +++ b/core/debug/trace/doc.odin @@ -1,6 +1,12 @@ /* Captures and resolves stack traces for debugging purpose. +Debug info based support is implemented for Windows, MacOS, and Linux. + +Other targets can use the instrumentation based mode, which uses Odin's instrumentation +features to trace, with some runtime overhead. +Opt in with `-define:ODIN_TRACE_INSTRUMENTATION_MODE=true`. + Example: package main