Increase iteration count on toolchain wait loop

Marcus Shawcroft 2016-04-05 16:40:50 +01:00
parent d54b280afe
commit f2ddf68b80
1 changed files with 1 additions and 1 deletions

View File

@ -538,7 +538,7 @@ class mbedToolchain:
itr = 0 itr = 0
while True: while True:
itr += 1 itr += 1
if itr > 30000: if itr > 180000:
p.terminate() p.terminate()
p.join() p.join()
raise ToolException("Compile did not finish in 5 minutes") raise ToolException("Compile did not finish in 5 minutes")