lua-users home
lua-l archive

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


liam mail wrote:
> Compiling LuaJIT2 beta 8 on Mac osX 10.6 using a mac mini does not seem to
> produce the correct files with the correct information.
> I have tried plain "make" and "make TARGET_SYS=Darwin" which both seem to
> produce the same results, that is the dylib has the extension '.so", no
> version numbers are included in the dylib name, no version numbers (current,
> compatible) contained in the dylib macho-o header and the install name is
> libluajit.so

If you don't specify a PREFIX, then no install name can be derived.
Also, the install step does the copy from the *.so to the *.dylib:

  make PREFIX=/usr/local && sudo make install PREFIX=/usr/local

--Mike