ctemplate,安装以及出现报错处理方式
简介
Google CTemplate是一个开源的C++模板引擎,可以生成html文件,今天安装出现一些问题,在此将遇到的问题以及解决方式记录下来# 简介
安装
git clone https://github.com/OlafvdSpek/ctemplate.git
cd ctemplate
./autogen.sh
./configure
make
sudo make install(注意带sudo)
出现问题1
安装ctemplate出现问题 autoreconf: command not found
解决方式:
运行:sudo yum install -y autoconf automake libtool
出现问题2
编写测试程序运行遇到报错:
./mytest: error while loading shared libraries: libctemplate.so.3: cannot open shared object file: No such file or directory
解决方式:
运行:export LD\_LIBRARY\_PATH=$LD\_LIBRARY\_PATH:/usr/local/lib
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 芝士就是菜!
评论