1
0
Fork 0
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:
alexvjs 2023-10-10 20:09:17 +04:00 committed by GitHub
parent 5b54eee56c
commit 2e93d77285
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");