Environment:

  • Flash Builder 4.6
  • AIR SDK 3.1
  • OS X 10.7.3

I'm debugging a problem that does appear in iOS builds of app that uses my SWC library, compiled with FB, and does not appear in the iOS builds of very similar app done with raw AIR SDK.

I suspect that the reason of a problem is a difference in compiler configuration. Now I'm trying to manually (and unsuccessfully) craft the ant's build.xml so it would match whatever I think FB is doing in hope that I would see the same crash at some point. But this is not very effective.

Is there a way I can see how FB invokes adt etc. and compare that with my ant config?

Any other troubleshooting hints?

link|improve this question

For more details on the problem, see thread.gmane.org/gmane.comp.lang.lua.general/88456. Warning: hardcore. – Alexander Gladysh Feb 17 at 23:58
feedback

2 Answers

up vote 2 down vote accepted

This reminds me my older answer.
In short, you can create program that logs its arguments, backup original adt and substitute it with it (your program might even run original adt with those arguments.)

link|improve this answer
Hmm, doesn't it invoke Java version directly? But, anyway, one can proxy that Java code as well. Good idea. Can you think what else should I proxy besides adt and mxmlc? – Alexander Gladysh Feb 17 at 16:02
Seems that it does invoke Java code directly... :( – Alexander Gladysh Feb 18 at 23:05
No, it just ignores adt binary, and runs java executable with -jar adt.jar... Got all the flags by replacing java with a script which logs command line to a file and then starts the old java. – Alexander Gladysh Feb 18 at 23:22
NB: figured out the above with $ sudo execsnoop -v -a -e (on OS X) – Alexander Gladysh Feb 19 at 0:24
feedback

A likely case is that flashbuilder is using a separate copy of the AIR SDK, that is older. You can check the folder here (windows): C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\sdks

To see if you are using the most current AIR sdk.

link|improve this answer
It is Flash Builder 4.6, and it is using Flex SDK 4.6.0, which, according to README, is bundled with AIR 3.1. Both adt executables report themselves as 3.1.0.4880 – Alexander Gladysh Feb 17 at 23:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.