diff --git a/IDE/src/BuildContext.bf b/IDE/src/BuildContext.bf index fc1ace98..0c67fbbf 100644 --- a/IDE/src/BuildContext.bf +++ b/IDE/src/BuildContext.bf @@ -794,7 +794,10 @@ namespace IDE outRt.Append(dynName ? ".dll" : ".lib"); } - if ((workspaceOptions.mEnableObjectDebugFlags) || (workspaceOptions.mAllocType == .Debug) || (workspaceOptions.mAllocType == .Stomp)) + if ((workspaceOptions.mEnableObjectDebugFlags) + || (workspaceOptions.mAllocType == .Debug) + || (workspaceOptions.mAllocType == .Stomp) + || (workspaceOptions.mAllocStackTraceDepth > 0)) { outDbg.Append("Beef", IDEApp.sRTVersionStr, "Dbg"); outDbg.Append((Workspace.PlatformType.GetPtrSizeByName(gApp.mPlatformName) == 4) ? "32" : "64");