Neither libtoolize nor glibtoolize could be found
15,018
It is provided by the package libtool.
On Ubuntu you'd simply
sudo apt-get install libtool
see also http://manpages.ubuntu.com/manpages/dapper/man1/libtoolize.1.html
Related videos on Youtube

Author by
Zbarcea Christian
Updated on June 04, 2022Comments
-
Zbarcea Christian 6 months
I'm trying to compile a .cpp file but I must install libssh2. I have downloaded the package from libssh2.org and when I enter: ./buildconf I'm getting:
Neither libtoolize nor glibtoolize could be found!
I don't know what to do, I have included in the header libssh2.h ( #include ) and also the file does exists in the same folder where I have the source file what I'm trying to compile.
-
johnsyweb almost 10 yearsDo you have libtool installed?
-
-
Pancho over 7 yearsand on RedHat... yum install libtool
-
knocte almost 7 yearslibtool provides libtoolize, but what package provides glibtoolize?
-
Elise van Looij about 5 yearsWhen Homebrew installs libtool on a system that already has libtool (MacOS 10.12, Sierra, in my case), it installs to /usr/local/Cellar/libtool en prepends the existing installation with a 'g'. Thus, weirdly, one ends up with /usr/local/glibtool en /usr/local/glibtoolize. When avrdude's ./bootstrip could not find libtoolize, changing the command to glibtoolize solved to problem.