How can I install libtoolize in cygwin?
Asked Answered
C

3

6

When I'm trying to build Apache Thrift source in cygwin, I'm getting error saying "Couldn't find libtoolize!". How can I install libtoolize in cygwin?

Consign answered 28/6, 2014 at 11:16 Comment(0)
C
8

'libtoolize' is a part of libtool. You can dowload latest version of libtool from http://ftp.gnu.org/gnu/libtool/, extract it, then run ./configure and make install from cygwin terminal.

Consign answered 29/6, 2014 at 10:47 Comment(1)
You will also need GNU M4 1.4.6 or later to install libtool-2.4.6 and above. So make sure in your Cygwin installer that you select the "m4" package from the "Interpreters" section.Loot
L
13

You will need GNU M4 1.4.6 or later to install LibTool (which includes libtoolize).

Good news is that you can easily do it if you run the Cygwin installer (no worries, it will keep your Cygwin installation and add new packages if you select them). So all you need to do is to click on the following buttons:

GNU M4 installation

enter image description here

LibTool installation

enter image description here

Loot answered 7/10, 2015 at 13:15 Comment(0)
C
8

'libtoolize' is a part of libtool. You can dowload latest version of libtool from http://ftp.gnu.org/gnu/libtool/, extract it, then run ./configure and make install from cygwin terminal.

Consign answered 29/6, 2014 at 10:47 Comment(1)
You will also need GNU M4 1.4.6 or later to install libtool-2.4.6 and above. So make sure in your Cygwin installer that you select the "m4" package from the "Interpreters" section.Loot
M
0

Use this:

python -mpip get-install libtoolize
Mysticism answered 7/8, 2020 at 20:14 Comment(1)
The provided answer was flagged for review as a Low Quality Post. Here are some guidelines for How do I write a good answer?. This provided answer could benefit from an explanation. Code only answers are not considered "good" answers. From Review.Drum

© 2022 - 2024 — McMap. All rights reserved.