Navigation Menu

Skip to content

Commit

Permalink
- Changed compile.bat script to use debug build
Browse files Browse the repository at this point in the history
  • Loading branch information
tgiphil committed Nov 22, 2015
1 parent fd70e7d commit 964b33b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Compile.bat
@@ -1,2 +1,2 @@
cd Source
CALL Compile.bat
CALL Compile-Debug.bat
3 changes: 1 addition & 2 deletions Source/Mosa.Tool.Compiler/Compiler.cs
Expand Up @@ -58,7 +58,7 @@ public Compiler()
{
compiler.CompilerFactory = delegate { return new AotCompiler(); };

usageString = "Usage: mosacl -o outputfile --Architecture=[x86|avr32] --format=[ELF32|ELF64|PE] {--boot=[mb0.7]} {additional options} inputfiles";
usageString = "Usage: mosacl -o outputfile --Architecture=[x86|avr32] --format=[ELF32|ELF64] {--boot=[mb0.7]} {additional options} inputfiles";
optionSet = new OptionSet();
inputFiles = new List<FileInfo>();

Expand Down Expand Up @@ -400,7 +400,6 @@ private static Func<BaseLinker> GetLinkerFactory(string format)
{
switch (format.ToLower())
{
//case "pe": return delegate { return new PELinker(); };
case "elf": return delegate { return new Elf32(); };
case "elf32": return delegate { return new Elf32(); };

Expand Down

0 comments on commit 964b33b

Please sign in to comment.