1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-14 14:24:10 +02:00

Added (partially-working) '-deterministic' debug cmd line param

This commit is contained in:
Brian Fiete 2021-01-30 14:43:10 -08:00
parent 5ac1bbf63f
commit 4678dcb9e5
3 changed files with 25 additions and 4 deletions

View file

@ -254,6 +254,7 @@ namespace IDE
// The Beef resolve system is up-to-date with the projects' files,
// but the Clang resolver only has open files in it
public bool mNoResolve = false;
public bool mDeterministic = false;
public BfSystem mBfResolveSystem ~ delete _;
public BfCompiler mBfResolveCompiler;
public BfResolveHelper mBfResolveHelper ~ delete _;
@ -6992,6 +6993,8 @@ namespace IDE
case "-forceSafe":
mSafeMode = true;
mNoResolve = true;
case "-deterministic":
mDeterministic = true;
default:
return false;
}