我安装了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退出状态
我不知道如何解决这个问题。请帮忙。
答案 0 :(得分:0)
为什么不juste juste提供的Makefile?
请
./ hiredis-示例
答案 1 :(得分:0)
gcc -o example example.c -lhiredis $(pkg-config --cflags --libs glib-2.0)