tags:

views:

37

answers:

1

I'm actually looking for a genuine "post build" phase - not the Run script stage. The reason for this is that I want to do some parsing of a target's build-state.dat which is where Xcode puts all of its build output.

The problem is that this file isn't actually created until after the build has succeeded or failed, thus anything in the Run Script phase can't see it.

Any clues?

Thanks

A: 

Can you create a Shell Script Target that has the product you want to analyze as its dependency, and parse the file in the Shell Script Target?

mipadi
Thanks, I tried that, but unfortunately, the build-state.dat file of the dependent target is not yet created at that point. Basically it doesn't show up until the process is complete, which is essentially once the build botton goes from grayed out to active again.
jsheehy