MobileNativeFoundation / XCLogParser

Tool to parse Xcode and xcodebuild logs stored in the xcactivitylog format
Apache License 2.0
1.73k stars 121 forks source link

Question:What does green and blue histogram means? #143

Closed ma125125t closed 3 years ago

ma125125t commented 3 years ago

image

ma125125t commented 3 years ago

Is my guess correct? The blue one represent duration and the green one represent compilation time? The blue one is always larger than the green one because of dependency compilation.

ecamacho commented 3 years ago

That's right. The blue one is how long did it took Xcode to actually build the product. In some cases is misleading, because Xcode compiles the code and sometimes waits until some dependencies are built before assembling the final binary. That's why we added the green one with only the compilation times

ma125125t commented 3 years ago

thanks @ecamacho