On Fri, 6 Oct 2023 at 01:20, Ángel <an...@16bits.net> wrote: > On 2023-10-04 at 20:05 -0400, Dave Cigna wrote:
> > Here's how I encountered the problem. You might not be able to > > reproduce > > it on your machine, but that doesn't mean that it's not a bug with > > bash: > > > > download: candle_1.1.7.tar.gz > > from: https://github.com/Denvi/Candle > > Extract to the folder of your choosing. cd to that folder and execute > > the > > bash command: > > > > ../Candle > > For the record, the above program is a 32-bit ELF executable. The most > likely caue for the error in this case is not having the /lib/ld- > linux.so.2 interpreter it requests. Offtopic, but in case it helps Dave Cigna, I have successfully built and run Candle on a 64bit Debian 11 by doing something like: somedir=/where/you/want/candle cd $somedir git clone https://github.com/Denvi/Candle cd $somedir/Candle CMAKE_INSTALL_PREFIX=$somedir/Candle/install cmake src make It might be necessary to install additional required development packages, in my case this included: qtbase5-dev libqt5opengl5-dev libqt5serialport5-dev