[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [5.1.4] Do I need those shared libraries?
- From: "Gunnar Zötl" <gz@...>
- Date: Thu, 14 Apr 2011 12:05:41 +0200 (MEST)
> 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