I was wondering if there's a way to get the Xcode toolchain to compile with -S (i.e. gcc -S) to get the compilation as assembly (not binary)
I've tried adding it as extra flags and it doesn't seem to like it.
I'm ideally looking for an assy listing of my current code.
i.e. wind up with
main.S
AppDelegate.S
AppComtroller.S
OtherClassFile.S
etc.S
all containing assy.
Cheers,
A