mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
Compiler engine settings refactoring.
This commit is contained in:
parent
db1d641de8
commit
03d12a7bb4
2 changed files with 4 additions and 4 deletions
|
|
@ -208,8 +208,8 @@ namespace Cosmos.TestRunner.Core
|
|||
var xArgs = new List<string>
|
||||
{
|
||||
"KernelPkg:" + KernelPkg,
|
||||
"DebugEnabled:True",
|
||||
"StackCorruptionDetectionEnabled:" + EnableStackCorruptionChecks,
|
||||
"EnableDebug:True",
|
||||
"EnableStackCorruptionDetection:" + EnableStackCorruptionChecks,
|
||||
"StackCorruptionDetectionLevel:" + StackCorruptionChecksLevel,
|
||||
"DebugMode:Source",
|
||||
"TraceAssemblies:" + TraceAssembliesLevel,
|
||||
|
|
|
|||
|
|
@ -60,8 +60,8 @@ namespace Cosmos.Build.Tasks
|
|||
Dictionary<string, string> args = new Dictionary<string, string>
|
||||
{
|
||||
{"KernelPkg", KernelPkg},
|
||||
{"DebugEnabled", DebugEnabled.ToString()},
|
||||
{"StackCorruptionDetectionEnabled", StackCorruptionDetectionEnabled.ToString()},
|
||||
{"EnableDebug", DebugEnabled.ToString()},
|
||||
{"EnableStackCorruptionDetection", StackCorruptionDetectionEnabled.ToString()},
|
||||
{"StackCorruptionDetectionLevel", StackCorruptionDetectionLevel},
|
||||
{"DebugMode", DebugMode},
|
||||
{"TraceAssemblies", TraceAssemblies},
|
||||
|
|
|
|||
Loading…
Reference in a new issue