You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 17, 2021. It is now read-only.
# Pipe the output of xcodebuild to this script to see the slowest 10 functions to compile.
# Use this flag with xcodebuild: OTHER_SWIFT_FLAGS='-Xfrontend -debug-time-function-bodies'
echo"\nSlowest functions to compile:\n"
grep '^[0-9]\+\.[0-9]\+'| sed 's/\(^[0-9]*.[0-9]*\)\([a-z]*\)/\1 \2/'| sort -k2,2r -k1,1nr | sed 's/\(^[0-9]*.[0-9]*\) \([a-z]*\)/\1\2/'| head -n 10 | sed 's/^/ /'