文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>APR环境设置

APR环境设置

时间:2007-05-28  来源:Givemefive

下载apr1.28 apr-util1.28
编译安装apr-util1.28 时,要给出apr的路径 --with-apr

1.error: syntax error before "apr_off_t"
修改apr.h
找到
typedef  off64_t           apr_off_t;
改成
typedef  int64_t           apr_off_t;

2.undefined reference to `apr_initialize'
在Makefile里面的
gcc -o test test.o $(LIB)
改成
gcc -o test test.o $(LIB) -lapr-1 -laprutil-1

3.error while loading shared libraries: libapr-1.so.0: cannot open shared object file: No such file or directory
把安装的apr下的lib目录里面的东西都拷贝到 /usr/lib下.

附Makefile:

INC=-I/root/apr1.28/include/apr-1
LIB=-L/usr/lib

all:
        gcc -c $(INC) apr-sample.c -o test.o $(LIB)
        gcc -o test test.o $(LIB) -lapr-1 -laprutil-1
        ./test
clean:
        rm -f test.o

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载