光说有毛用


linux 无法找到gengetopt

· by admin · Read in about 1 min · (31 Words)
centos gengetopt linux 

系统没有安装gengetopt

去gnu下载gengetopt,推荐使用华中科技大学镜像
http://mirror.hust.edu.cn/gnu/gengetopt/

选择合适的版本
wget http://mirror.hust.edu.cn/gnu/gengetopt/gengetopt-2.22.tar.gz
下载编译安装
tar xvf gengetopt-2.22.tar.gz
cd gengetopt-2.22
./configure
make
sudo make install
补充说明:
如果在编译过程中出现
fileutils.cpp: In function ‘char* create_filename(char*, char*)’:
fileutils.cpp:23: 错误:‘strlen’在此作用域中尚未声明

修改src/fileutils.cpp 源文件添加头文件

#include

继续编译安装即可

Comments