mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 19:48:20 +02:00
Link dbg rt when mAllocStackTraceDepth > 0
Had link error when mAllocStackTraceDepth > 0
This commit is contained in:
parent
5b54eee56c
commit
2e93d77285
1 changed files with 4 additions and 1 deletions
|
@ -794,7 +794,10 @@ namespace IDE
|
||||||
outRt.Append(dynName ? ".dll" : ".lib");
|
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("Beef", IDEApp.sRTVersionStr, "Dbg");
|
||||||
outDbg.Append((Workspace.PlatformType.GetPtrSizeByName(gApp.mPlatformName) == 4) ? "32" : "64");
|
outDbg.Append((Workspace.PlatformType.GetPtrSizeByName(gApp.mPlatformName) == 4) ? "32" : "64");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue