In Windows there is a DllMain and DLL_PROCESS_ATTACH / DLL_PROCESS_DETACH flags, which allow to initialize / free resources after DLL is attached to a process... So how can I specify an entry point in case of OS X? As always, I can't find anything useful in Apple documentation :(

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Wouldn't that work?

__attribute__((constructor)) void DllMain() 
{ 
  // code
} 
link|improve this answer
Yeah, it seems this is what I was looking for – Ryan Jun 2 '11 at 6:45
feedback

I think malkia (upvoted) and Bavarious have the right answer, but since I already looked it up: One way to do this is to set your init routine. Look for the "Initialization Routine" in your Xcode build settings for your library. Prefix the function name with an underscore. I.e. if your init routine is called DllMain, enter "_DllMain".

Also, I have previously done some initialization using obj-c++ doing something like this:

class LibraryInit
{
    public LibraryInit()
    {
        // do some init stuff here
    }
} ;
static LibraryInit sLibraryInit();
link|improve this answer
Interesting. For the record, that’s equivalent to the linker flag -init. – Bavarious Jun 2 '11 at 6:58
I upvoted this, as it's more portable (though C++ specific). One thing that might not work with this approach (and certain compilers/linkers such as MSVC) is that if this ends up in a library, it might not get called. I might have old information about this, but it happened to us many times in the past (our studio). Usually we declare sLibraryInit() to be external, and in at least one place in the main project, we refer to it. – malkia Jun 4 '11 at 17:09
feedback

The Dynamic Library Programming Topics document on Apple’s Web site shows the use of

__attribute__((constructor))

and

__attribute__((destructor))

to implement initialisers and finalizers in dynamic libraries.

link|improve this answer
This is more complete answer, than mine. – malkia Jun 4 '11 at 17:09
feedback

Your Answer

 
or
required, but never shown

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