Running Linux error in Fix8 C ++ library?

I am trying to run Fix8 in Fix8.org. I follow the README instructions as described in:

https://github.com/dakka/fix8

I get an error when running the command. / configure? This leads to:

configure: error: cannot find install-sh, install.sh, or shtool in "." "./.." "./../.." 

Does anyone have experience in fixing this? I use both the latest versions of Debian and Ubuntu Linux. thanks

+4
source share
2 answers

Files mentioned in the error are placed in the autoconf source directory and must be distributed in a tar file. If this is not a mistake, notify the author.

If you have autoconf installed, you can get the files by running ./bootstrap (or any other script) and the usual name is ./autogen.sh ), but you should not use autoconf to run configure script.

+3
source

Yes, sorry you need libtool. I set configure - as it was not. Check out the FAQ. If you have any problems, send an e-mail to the support group.

+1
source

Source: https://habr.com/ru/post/1447059/


All Articles