mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Merge pull request #1898 from alexvjs/master
Link dbg rt when mAllocStackTraceDepth > 0
This commit is contained in:
commit
2dcc9552e2
1 changed files with 4 additions and 1 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue