installed libtool but libtoolize not found

后端 未结 4 527
醉话见心
醉话见心 2020-12-23 10:02

im trying to build libxml2 from source on my mac.

so i have autoconf libtool and automake installed using mac ports

autoconf and automake seem to be working

4条回答
  •  梦毁少年i
    2020-12-23 10:22

    To bring together a few threads libtoolize is installed as glibtoolize when you install libtool using brew. This can be achieved as follows; install it and then create a softlink for libtoolize:

    brew install libtool
    ln -s /usr/local/bin/glibtoolize /usr/local/bin/libtoolize
    

提交回复
热议问题