1

我已经安装了 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 退出状态

我不知道如何解决这个问题。请帮忙。

4

2 回答 2

1
gcc -o example example.c -lhiredis $(pkg-config --cflags --libs glib-2.0)
于 2019-05-30T03:19:25.623 回答
0

你为什么不 juste juste 提供的 Makefile?

制作

./hiredis-示例

于 2013-09-13T14:35:13.897 回答