Search code examples
iosxcodemacoslibtool

I can't find libtool command on my MacOSX,10.7.x


I can't find libtool command.I tried to run $man libtool,Terminal returned "No manual entry for libtool" So I tried to download libtool from GNU site and install it... Still I can't find the libtool command. Any help would be appreciated.


Solution

  • If you actually successfully compiled libtool, did you do the following:

    ./configure --prefix=/usr
    make
    make install
    

    I otherwise can highly recommend using homebrew to install any standard library that did not come with Mac OS X: http://brew.sh

    After setting it up, you could install libtool by typing:

    brew install libtool