From 8e6f554aec0f6ec89d11a1fea80fbeb5781e3cb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ram=C3=B3n=20Grill?= Date: Sat, 13 Dec 2025 21:28:20 +0100 Subject: [PATCH] Fix compiling Godot for Linux failing with `profiler_sample_callstack` --- core/profiling/SCsub | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/profiling/SCsub b/core/profiling/SCsub index f9f370c399a..bc2b114ccdb 100644 --- a/core/profiling/SCsub +++ b/core/profiling/SCsub @@ -60,7 +60,7 @@ if env["profiler"]: env_tracy = env.Clone() env_tracy.Append(CPPDEFINES=["TRACY_ENABLE"]) if env["profiler_sample_callstack"]: - if env["platform"] not in ("windows", "linux", "android"): + if env["platform"] not in ("windows", "linuxbsd", "android"): # Reference the feature matrix in the tracy documentation. print("Tracy does not support call stack sampling on this platform. Aborting.") Exit(255)