set debug mode as default in console compiler
This commit is contained in:
parent
1284ac9a50
commit
09dae92e04
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue