ctemplate,安装以及出现报错处理方式

2023-07-22 19:53:15 浏览数 (1)

简介

Google CTemplate是一个开源的C 模板引擎,可以生成html文件,今天安装出现一些问题,在此将遇到的问题以及解决方式记录下来。

安装

  1. git clone https://github.com/OlafvdSpek/ctemplate.git
  2. cd ctemplate
  3. ./autogen.sh
  4. ./configure
  5. make
  6. 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

0 人点赞