set debug mode as default in console compiler

This commit is contained in:
Бондарев Иван 2015-10-09 16:35:14 +02:00
parent 1284ac9a50
commit 09dae92e04
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@ namespace PascalABCCompiler
public static bool DetailOut = false;
public static bool Rebuild=false;
public static CompilerOptions.OutputType outputType;
public static bool Debug = false;
public static bool Debug = true;
public static bool UseDll = false;
public static List<Error> GlobalErrorsList = new List<Error>();
public static DateTime StartTime;

View file

@ -69,7 +69,7 @@ namespace PascalABCCompiler
co.OutputDirectory = "";
else co.OutputDirectory = args[1];
co.Rebuild = false;
co.Debug = false;
co.Debug = true;
co.UseDllForSystemUnits = false;
bool success = true;