lua-users home
lua-l archive

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


> In order to save space on a Linux appliance, I'd like to check if I
> really need those shared libraries when compiling the Lua interpreter:
> 
> -lm -ldl -lreadline -lhistory -lncurses
> 
> What would I be missing by not including those?

you can omit the last three if you don't need readline support. The first lib is for the math stuff and the second is for dynamic lib loading. 

Gunnar