Compiler engine settings refactoring.

This commit is contained in:
José Pedro 2018-01-13 20:33:52 +00:00
parent db1d641de8
commit 03d12a7bb4
No known key found for this signature in database
GPG key ID: B8247B9301707B83
2 changed files with 4 additions and 4 deletions

View file

@ -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,

View file

@ -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},