如何在Windows-10上编译REDIS 5.0.5,make错误

时间:2019-06-07 16:39:25

标签: makefile redis compilation windows-10 mingw-w64

Redis下载了5.0.5 cd到src目录 做

这肯定对其他人有用。关于如何解决此问题的任何想法/提示?

短版:

net.c ...

make[3]: Entering directory '/cygdrive/c/Users/pmoran/Downloads/redis-5.0.5/deps/hiredis'
cc -std=c99 -pedantic -c -O3 -fPIC  -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb  net.c

net.c:270:21: error: storage size of ‘hints’ isn’t known
 struct addrinfo hints, *servinfo, *bservinfo, *p, *b;
                 ^~~~~

及以后

net.c:337:40: error: dereferencing pointer to incomplete type ‘struct addrinfo’
 for (p = servinfo; p != NULL; p = p->ai_next) {
                                    ^~

然后

make[3]: *** [Makefile:156: net.o] Error 1
make[3]: Leaving directory '/cygdrive/c/Users/pmoran/Downloads/redis-5.0.5/deps/hiredis'
make[2]: *** [Makefile:46: hiredis] Error 2
make[2]: Leaving directory '/cygdrive/c/Users/pmoran/Downloads/redis-5.0.5/deps'

最后

cc: error: ../deps/hiredis/libhiredis.a: No such file or directory
cc: error: ../deps/lua/src/liblua.a: No such file or directory
make[1]: *** [Makefile:219: redis-server] Error 1
make[1]: Leaving directory '/cygdrive/c/Users/pmoran/Downloads/redis-5.0.5/src'
make: *** [Makefile:6: all] Error 2

2 个答案:

答案 0 :(得分:1)

我也遇到了同样的问题,我发现最好的解决方案是使用旧版本的redis。 Redis 3.2.13最近进行了更新(2019年3月),因此它具有我需要的所有功能。如果使用它,则必须在“ include”语句之后将以下内容添加到redis-3.2.13 / deps / hiredis / net.c中:

    #ifdef __CYGWIN__
    #define TCP_KEEPCNT 8
    #define TCP_KEEPINTVL 150
    #define TCP_KEEPIDLE 14400
    #endif

之后,我可以使用以下命令从根目录进行制作:

make distclean
make

这基于this github对话。

希望这会有所帮助!

答案 1 :(得分:1)

您可以尝试一下。

步骤1:
从行中删除段'-std = c99' $(CC)-std = c99 -pedantic -c $(REAL_CFLAGS)$ < 在。\ redis-5.0.5 \ deps \ hiredis下的文件Makefile中

Ste 2:
在“ include”语句之后的include deps / hiredis / net.c之后添加以下段:

#ifndef TCP_KEEPCNT
    #define TCP_KEEPCNT 8    
#endif

#ifndef TCP_KEEPINTVL
    #define TCP_KEEPINTVL 150   
#endif

#ifndef TCP_KEEPIDLE
    #define TCP_KEEPIDLE 14400   
#endif