我想跟踪我等待Xcode在典型工作日准备好的时间。从按“运行”到我的SIM / iphone屏幕上的应用程序。有没有办法检测Xcode当前是否正在构建/链接/复制某些内容?
目前,我只是做了一个美化的版本ps ax | grep“/ clang”
有更好的方法吗?我查看了Xcode的脚本桥头,但我找不到任何东西。
由于
答案 0 :(得分:1)
您可以添加两个"运行脚本"为您的Xcode项目构建阶段,该项目运行一个小脚本。一个在建筑的开始和结束。
开头的脚本可能就像
#!/bin/sh
date=`date`
# this echo puts the line into your Build Log
echo "time started building is $date"
# and doing a "cat" into some file will save it
cat "time started building is $date" > /path/to/your/buildlog.txt
最后也是一样。
你也可以做"行动前"和"行动后" Build方案中的方法。他们可能看起来像这样:
只有在这里,你才能做适当的脚本事情。