Skip to content

Commit

Permalink
Merge pull request CosmosOS#1764 from CosmosOS/bug/fix_bochs_debug
Browse files Browse the repository at this point in the history
Add back shell execute so we get bochs debugger
  • Loading branch information
charlesbetros authored May 10, 2021
2 parents 3b1a5b9 + 9d1d8c7 commit dbf59c2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions source/Cosmos.Debug.Hosts/Bochs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,7 @@ public override void Start()
}
_bochsStartInfo.Arguments = string.Format("-q {1} -f \"{0}\"", _bochsConfigurationFile.FullName, xExtraLog);
_bochsStartInfo.WorkingDirectory = _bochsConfigurationFile.Directory.FullName;
_bochsStartInfo.CreateNoWindow = true; // when ProcessStartInfo.UseShellExecute is supported in .net core, maybe this line isn't needed
//_bochsStartInfo.UseShellExecute = true;
_bochsStartInfo.UseShellExecute = true;
if (RedirectOutput)
{
if (LogOutput == null)
Expand Down

0 comments on commit dbf59c2

Please sign in to comment.