views:

80

answers:

0

I've been using agvtool for one of my iPhone apps on general principle, and have recently found a reason why I want to be able to check the version variable (so that I can re-copy help content into the Documents directory, if it's out of date). The variable, MyAppVersionNumber, defined in MyApp_vers.c, is auto-generated during the build. It gets generated in a .o file, and shows up in (the previous version?) of the linked app itself. So far so good, it would seem.

So now I've declared an extern double MyAppVersionNumber in the .m file where I need to use this (and later try to use it, just in an NSLog statement to get started), and I try to build for the iPhone simulator, and get a link error:

  "_MyAppVersionNumber", referenced from:
      _MyAppVersionNumber$non_lazy_ptr in HelpViewController.o
     (maybe you meant: _MyAppVersionNumber$non_lazy_ptr)
ld: symbol(s) not found
collect2: ld returned 1 exit status

So, what do I need to do differently, to get this to link?

I googled for $non_lazy_ptr and agvtool, and got nothing at all, and for just $non_lazy_ptr, which gave some things, but mostly applying to libraries, which this isn't, really (is it?). And in my diggings so far, I've yet to turn up a page about agvtool that actually talks in any detail about using the variables -- the ones I've read just casually say to declare an extern variable, which I've done.

Anyone familiar with this, and/or otherwise able to provide any help?

Thanks!