[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: unicode support in lua
- From: roberto@... (Roberto Ierusalimschy)
- Date: Thu, 26 Apr 2007 09:51:41 -0300
> I have downloaded slunicode, lpeg, lrexlib because I need a more
> sophisticated regex lib for the work I am trying to do.
> Unfortunately, these libs don't come with a configure script :( I
> have no idea how to compile them successfully on my Mac (Macosx 10.4
> tiger).
For LPeg, I use this:
export MACOSX_DEPLOYMENT_TARGET=10.3
gcc -bundle -undefined dynamic_lookup -Wall -O2 -o lpeg.so lpeg.c
-- Roberto