In deken there's no binary of PdLua for ARM. In the README for the Linux binary I read this:
"1. edit Makefile.static to configure your PLATFORM and PDINCLUDE"
But there's no Makefile or any .c file (there's a pd.lua file though). What do I need to compile PdLua for ARM? Which Makefile, any sources that might not be included in the available packages?
On Sat, May 12, 2018 at 9:43 AM, Alexandros adrcki@gmail.com wrote:
In deken there's no binary of PdLua for ARM. In the README for the Linux binary I read this:
"1. edit Makefile.static to configure your PLATFORM and PDINCLUDE"
But there's no Makefile or any .c file (there's a pd.lua file though). What do I need to compile PdLua for ARM? Which Makefile, any sources that might not be included in the available packages?
On debian systems, you can install the package pd-lua.
If you need to compile it yourself, the Makefile will be in the source directory along with the pdlua.c file. I found a fork of it here: https://github.com/agraef/pd-lua so I'm not sure which is the latest and best version. The last one I worked on is here: https://sourceforge.net/p/pure-data/svn/HEAD/tree/trunk/ externals/loaders/pdlua/
Martin
Hi Alexandros,
If you're on ARM, I guess you might be on a Linux, in which case maybe check your package manager instead of building from source - afaik Debian has a package for all architectures.
On 12/05/18 14:43, Alexandros wrote:
In deken there's no binary of PdLua for ARM. In the README for the Linux binary I read this:
Binary distribution doesn't include sources I suppose...
You can get some recently updated (2 months ago, with Lua 5.3 compatibility) sources here:
https://github.com/agraef/pd-lua git clone https://github.com/agraef/pd-lua.git
It seems to have a new build system included there.
My original version (~2013 era) is still there if you want to use earlier Lua releases (not sure if it's 5.1 or 5.2 compatible): https://code.mathr.co.uk/pdlua git clone https://code.mathr.co.uk/pdlua.git
There is also mrpeach's version in sourceforge SVN, I think that is in-between in terms of freshness (it might have more bug fixes and features). But I had trouble with it at some point because it didn't have a self-contained build system and I didn't feel like checking out the whole externals tree to get one.
On 12/05/2018 03:25 μμ, Claude Heiland-Allen wrote:
Hi Alexandros,
If you're on ARM, I guess you might be on a Linux, in which case maybe check your package manager instead of building from source - afaik Debian has a package for all architectures.
Yes, I didn't even think about the package manager. I installed it with apt-get and it's working fine. Thanks for the suggestion.