lua-users home
lua-l archive

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


Thanks Phillip! That was the issue.

-drd

On Sun, Feb 19, 2012 at 23:11, Philipp Janda <siffiejoe@gmx.net> wrote:
> On 20.02.2012 02:02, David Rio wrote:
>>
>> Tet me try to simplify the amount of code necessary to reproduce
>> the issue:
>>
>> --------------------$ cat compile.sh
>> #!/bin/bash
>> rm -f *.o *.so
>> gcc -g -c ldrdlib.c
>> gcc -g -Wall -shared  -llua -o mylib.so ldrdlib.o
>
>
> I don't have access to a Mac, so I can't say for sure, but it seems your gcc
> invocation is wrong. According to [1] it probably should be something like:
>    gcc -g -Wall -bundle -undefined dynamic_lookup -o mylib.so ldrdlib.o
>
>  [1]: http://lua-users.org/wiki/BuildingModules
>
> HTH,
> Philipp
>
>