[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: issue following array example in pil chapter 28.2
- From: David Rio <driodeiros@...>
- Date: Mon, 20 Feb 2012 07:07:03 -0600
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
>
>