1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 20:12:21 +02:00

More CompilerExplorer changes, like OmitDebugHelpers option

This commit is contained in:
Brian Fiete 2019-10-14 13:01:15 -07:00
parent c9e0ab6089
commit 75f11b1459
8 changed files with 100 additions and 79 deletions

View file

@ -118,6 +118,7 @@ public:
bool mEnableSideStack;
bool mHasVDataExtender;
bool mDebugAlloc;
bool mOmitDebugHelpers;
bool mUseDebugBackingParams;
@ -143,6 +144,7 @@ public:
mSIMDSetting = BfSIMDSetting_None;
mHotProject = NULL;
mDebugAlloc = false;
mOmitDebugHelpers = false;
mIncrementalBuild = true;
mEmitDebugInfo = false;
mEmitLineInfo = false;
@ -163,7 +165,7 @@ public:
mUseDebugBackingParams = true;
mAllocStackCount = 1;
mExtraResolveChecks = false;
mExtraResolveChecks = false;
#ifdef _DEBUG
//mExtraResolveChecks = true;
#endif