gSOAP 安装过程

gSOAP 安装过程

系统环境
操作系统:CentOS 6.3
gSOAP:gsoap_2.8.17.zip

1. 解压 gsoap_2.8.17.zip,进入 gsoap-2.8 目录。

2. 执行configure
# ./configure

如果出现如下问题:
configure: error: C++ compiler cannot create executables

原因是没安装了g++,重新安装后问题解决。

3. 执行 make
# make

如果出现如下问题:
../../ylwrap: line 111: yacc: command not found

解决办法:安装 byacc 。

再执行 make,如果出现如下问题:
missing: line 46: flex: command not found
解决办法:安装 flex ,然后需要重新运行 ./configure,再执行 make 。

如果出现如下问题:
.../usr/bin/ld: cannot find -ly
解决办法:安装 bison

至此,make通过。

4. 然后安装
# make install

安装成功,结束。


你可能感兴趣的:(gSOAP 安装过程)