- 论坛徽章:
- 0
|
本帖最后由 gg9654 于 2015-01-28 16:40 编辑
为了大家避免,在升级FastDFS是碰到问题,分享一下,我升级版本的经验。
一、问题概述
最近从5.02 升级到V5.05 出现了一些编译上的问题,比如函数未定义之类的。系统采用的Centos 6.4 X64, 具体编译错误 如下- trunk_mgr/trunk_mem.o: In function `storage_trunk_free_node':
- /usr/local/src/FastDFS/storage/trunk_mgr/trunk_mem.c:639: undefined reference to `fast_mblock_free'
- trunk_mgr/trunk_mem.o: In function `trunk_add_free_block':
- /usr/local/src/FastDFS/storage/trunk_mgr/trunk_mem.c:1192: undefined reference to `fast_mblock_alloc'
- trunk_mgr/trunk_mem.o: In function `trunk_add_space_by_node':
- /usr/local/src/FastDFS/storage/trunk_mgr/trunk_mem.c:600: undefined reference to `fast_mblock_free'
- /usr/local/src/FastDFS/storage/trunk_mgr/trunk_mem.c:611: undefined reference to `fast_mblock_free'
- trunk_mgr/trunk_mem.o: In function `trunk_create_trunk_file':
- /usr/local/src/FastDFS/storage/trunk_mgr/trunk_mem.c:1451: undefined reference to `fast_mblock_alloc'
- /usr/local/src/FastDFS/storage/trunk_mgr/trunk_mem.c:1494: undefined reference to `fast_mblock_free'
- trunk_mgr/trunk_mem.o: In function `trunk_delete_size_tree_entry':
- /usr/local/src/FastDFS/storage/trunk_mgr/trunk_mem.c:1261: undefined reference to `fast_mblock_free'
- trunk_mgr/trunk_mem.o: In function `trunk_delete_space':
- /usr/local/src/FastDFS/storage/trunk_mgr/trunk_mem.c:1345: undefined reference to `fast_mblock_free'
- trunk_mgr/trunk_mem.o: In function `trunk_split':
- /usr/local/src/FastDFS/storage/trunk_mgr/trunk_mem.c:1406: undefined reference to `fast_mblock_alloc'
- /usr/local/src/FastDFS/storage/trunk_mgr/trunk_mem.c:1422: undefined reference to `fast_mblock_free'
- trunk_mgr/trunk_mem.o: In function `trunk_free_space':
- /usr/local/src/FastDFS/storage/trunk_mgr/trunk_mem.c:1150: undefined reference to `fast_mblock_alloc'
- trunk_mgr/trunk_mem.o: In function `storage_trunk_destroy_ex':
- /usr/local/src/FastDFS/storage/trunk_mgr/trunk_mem.c:304: undefined reference to `fast_mblock_destroy'
- /usr/local/src/FastDFS/storage/trunk_mgr/trunk_mem.c:305: undefined reference to `fast_mblock_destroy'
- trunk_mgr/trunk_mem.o: In function `storage_trunk_restore':
- /usr/local/src/FastDFS/storage/trunk_mgr/trunk_mem.c:760: undefined reference to `fast_mblock_alloc'
- trunk_mgr/trunk_mem.o: In function `storage_trunk_init':
- /usr/local/src/FastDFS/storage/trunk_mgr/trunk_mem.c:200: undefined reference to `fast_mblock_init_ex'
复制代码 二、问题原因
这是由于老的libfastcommon无法支持新版的FastDFS。如果只是单纯编译新的libfastcommon,老的lib库不删除的话,会导致编译时链接到老的库,就是出现许多函数未定义,网上很多说要卸载FastDFS系统在安装,其实不用,只要将老的libfastcommon库删除就可以了。
三、解决方案
下面给出 具体指令,自测通过 仅供参考- rm -rf /usr/local/lib/libfdfs*
- rm -rf /usr/local/lib/libfast*
- rm -rf /usr/lib64/libfastcommon.*
- rm -rf /usr/lib64/libfdfsclient.*
- rm -rf /usr/lib/libf*
- vim make.sh
- TARGET_PREFIX=$DESTDIR/usr/ 改成 TARGET_PREFIX=$DESTDIR/usr/local
- ln -s /usr/lib64/libfastcommon.so /usr/local/lib/libfastcommon.so
- ln -s /usr/lib64/libfastcommon.so /usr/lib/libfastcommon.so
- ln -s /usr/local/lib64/libfdfsclient.so /usr/local/lib/libfdfsclient.so
- ln -s /usr/local/lib64/libfdfsclient.so /usr/lib/libfdfsclient.so
复制代码 编辑 make.sh是由于 老的FastDFS安装在/usr/local/bin下,新版改成了/usr/bin 为了兼容老版 特此更改 |
|