编译mmseg提示error cannot find input file src Makefile in

  • Simon 发布于 2017-03-11
  • 栏目: linux
  • 2710人围观
  • 0评论

今天安装coreseek的其中一个分词模块 mmseg ,编译安装到最后,出现

error cannot find input file: src/Makefile.in

解决方法如下:

aclocal
libtoolize --force
automake --add-missing
autoconf
autoheader
make clean


然后在重新编译

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

编译安装成功


评论