lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On 4/3/07, Luiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br> wrote:

The question now was: how does one build a .so for Mac OS X in this case?
gcc -shared does not work.

You may need to build a .dylib.

 gcc -dynamiclib

May I also suggest that the macosx build create universal binaries?

 gcc -arch i386 -arch ppc

 Ken Smith