error: Libtool library used but 'LIBTOOL' is undefined

前端 未结 6 1421
迷失自我
迷失自我 2020-12-12 22:57

I am trying to automake the OrientDb C++ library, but getting some errors.

Makefile.am:10: error: Libtool library used but \'LIBTOOL\' is undefi         


        
相关标签:
6条回答
  • 2020-12-12 23:36

    In my case on MacOs I solved it with:

    brew link libtool
    

    I know it's an old question but just ran into this, maybe it will help someone else.

    0 讨论(0)
  • 2020-12-12 23:37

    A good answer for me was to install libtool:

    sudo apt-get install libtool
    
    0 讨论(0)
  • 2020-12-12 23:43

    Fixed it. I needed to run libtoolize in the directory, then re-run:

    • aclocal

    • autoheader

    0 讨论(0)
  • 2020-12-12 23:44

    For mac it's simple:

    brew install libtool
    
    0 讨论(0)
  • 2020-12-13 00:00

    For folks who ended up here and are using CYGWIN, install following packages in cygwin and re-run:

    • cygwin32-libtool
    • libtool
    • libtool-debuginfo
    0 讨论(0)
  • 2020-12-13 00:00

    For people using Tiny Core Linux, you also need to install libtool-dev as it has the *.m4 files needed for libtoolize.

    0 讨论(0)
提交回复
热议问题