Skip to content

Commit

Permalink
start the stopwatch!
Browse files Browse the repository at this point in the history
  • Loading branch information
inorton committed Jan 31, 2014
1 parent 0c91f13 commit c13650d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CClash/Compiler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -618,12 +618,13 @@ public int InvokeCompiler(IEnumerable<string> args, Action<string> onStdErr, Act
{
bool missing = true;
var sw = new Stopwatch();
sw.Start();
do
{
if (!FileUtils.Exists(ObjectTarget))
{
Logging.Emit("compiler slow to write object!");
System.Threading.Thread.Sleep(50);
System.Threading.Thread.Sleep(100);
}
else
{
Expand Down

0 comments on commit c13650d

Please sign in to comment.