vote up 0 vote down star
extern void MyInitFunc(void) __attribute__ ((constructor));
extern void MyTermFunc(void) __attribute__ ((destructor));

void MyInitFunc(void)
{
  printf("%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n");
}

void MyTermFunc(void)
{
}

I put this in a .c file which is present in the main application (not a library or framework). It doesn't get called as per the GCC docs. Am I missing something important? This is on XCode 3.2 on Snow Leopard.

flag

33% accept rate
5  
0% accept rate? – Martin v. Löwis Oct 6 at 17:15
As it happens, my answer below was really not very helpful (no actual solution given) so I'm not expecting you to accept it, but you seem to have received fine answers for at least some of your other 7 questions. Why haven't you accepted any answers? – DigitalRoss Oct 6 at 17:48
They seem to have vanished. I accepted a couple today again but the badge still doesn't update itself. – codist Oct 6 at 18:20

2 Answers

vote up 3 vote down check

(a) Your code works for me compiling and running on SnowLeopard in Xcode 3.2.

(b) I'm not sure when stdout is guaranteed to have been set up. You're running code before main. Why not update a global variable here, then print it out in main to see if your code ran.

link|flag
Not sure why this didn't work the first time. I added a new source file with the initializers, made sure it was the first file in the compile sources step, and now it works. Being the first item after the crt in the load map it loads before any of the c++ static initializers. – codist Oct 7 at 1:13
vote up 8 vote down

This might explain some of the strange bugs being reported on Snow Leopard, but only if this construct worked in earlier releases.

You are correct that MyInitFunc should have been called purely as a result of being linked in with the program, even if the program is plain C89, even if the rest of it is some other language entirely.

The problem is that the C startup code on your system is not looking at the .ctors section and the .dtors section for addresses of constructors and destructors. I'm not sure if this is true of all platforms, but normally this is __do_global_ctors, a part of libgcc.

It's a platform bug, or, your gcc was built wrong, or, Apple has simply decided to do things differently and gcc doesn't support the platform properly.

You might try cc -v ... and check that collect2 is being called instead of ld directly.

link|flag
+1 for answering the question despite the low acceptance rate. – Chris Lutz Oct 6 at 17:26
I haven't tried on Snow Leopard, but I do recall using this functionality on older Mac OS Xen. – Chuck Oct 6 at 17:28
It is documented in a technote as working and mentioned in a document I just found: Dynamic Library Programming Topics. Maybe something will click in there. – codist Oct 6 at 18:21
It says "Note: Applications can also define and use initializer and finalizers." – codist Oct 6 at 18:22
It doesn't mention what extra requirement is there for an application. I may have to build a library. – codist Oct 6 at 18:35
show 1 more comment

Your Answer

Get an OpenID
or

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