lua-users home
lua-l archive

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


> 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