mirror of https://github.com/ARMmbed/mbed-os.git
Increase iteration count on toolchain wait loop
parent
d54b280afe
commit
f2ddf68b80
|
@ -538,7 +538,7 @@ class mbedToolchain:
|
|||
itr = 0
|
||||
while True:
|
||||
itr += 1
|
||||
if itr > 30000:
|
||||
if itr > 180000:
|
||||
p.terminate()
|
||||
p.join()
|
||||
raise ToolException("Compile did not finish in 5 minutes")
|
||||
|
|
Loading…
Reference in New Issue