我已经安装了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退出状态
我不确定如何解决此问题。请帮忙。
最佳答案
gcc -o example example.c -lhiredis $(pkg-config --cflags --libs glib-2.0)
关于redis - 使用hiredis(redis客户端库),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18774583/