lua-users home
lua-l archive

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


2010/3/15 Luiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br>:
>> Is the official "make macosx" target building a Lua suitable to load
>> binary modules, and in that case how to build such binary modules ?
>
> Yes. Binary modules should be created with
>        env MACOSX_DEPLOYMENT_TARGET=10.3 $(CC) -bundle -undefined dynamic_lookup -o libxxx.so lxxx.o
>
> See http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/install.html

Thanks, I'll try that (or rather have my friend try that).