Skip to content

Commit

Permalink
g3
Browse files Browse the repository at this point in the history
  • Loading branch information
jp2masa committed Jul 27, 2017
1 parent 636c575 commit a837d03
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/Cosmos.IL2CPU/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static int Run(string[] args, Action<string> logMessage, Action<string> l
var xEngine = new CompilerEngine();

xEngine.UseGen3Kernel = false;
if (CmdOptions.ContainsKey("UseGen3Kernel")) {
if (CmdOptions.ContainsKey("UseGen3Kernel".ToLower())) {
xEngine.UseGen3Kernel = Convert.ToBoolean(CmdOptions["UseGen3Kernel".ToLower()]);
}

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion source/Kernel/Cosmos.Platform/Cosmos.Platform.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<ItemGroup>
<ProjectReference Include="..\Cosmos.CPU\Cosmos.CPU.csproj" />
<ProjectReference Include="..\Cosmos.HAL\Cosmos.HAL.csproj" />
<ProjectReference Include="..\Cosmos.HAL\Cosmos.HAL3.csproj" />
<ProjectReference Include="..\Cosmos.Shared\Cosmos.Shared.csproj" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion source/Kernel/Cosmos.System/Cosmos.System3.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Cosmos.HAL\Cosmos.HAL.csproj" />
<ProjectReference Include="..\Cosmos.HAL\Cosmos.HAL3.csproj" />
<ProjectReference Include="..\Cosmos.Platform\Cosmos.Platform.csproj" />
<ProjectReference Include="..\Cosmos.Shared\Cosmos.Shared.csproj" />
</ItemGroup>
Expand Down

0 comments on commit a837d03

Please sign in to comment.