1
0
Fork 0
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:
Brian Fiete 2023-10-10 09:30:04 -07:00 committed by GitHub
commit 2dcc9552e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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");