我已经安装了 redis 服务器,并且可以从命令行使用它。现在,我想使用hiredis 编写一个客户端程序。首先,我尝试编译位于hiredis 目录中的example.c:
vishal@expmach:~/redis-2.6.14/deps/hiredis$ ls
adapters async.h COPYING dict.h *example.c* example-libevent.c
hiredis.c Makefile net.h sds.c test.c async.c CHANGELOG.md dict.c example-
ae.c example-libev.c fmacros.h hiredis.h net.c README.md sds.h
以下是命令:
vishal@expmach:~/redis-2.6.14/deps/hiredis$ gcc -c -I hiredis example.c
vishal@expmach:~/redis-2.6.14/deps/hiredis$ gcc -o example -I hiredis -L hiredis -lhiredis -lm
/usr/bin/ld: 找不到 -lhiredis collect2: ld 返回 1 退出状态
我不知道如何解决这个问题。请帮忙。