Centos7安装redis6.0.X,报错make[1]: *** [server.o] Error 1的解决
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| server.c: 在函数‘hasActiveChildProcess’中: server.c:1482:1: 警告:在有返回值的函数中,控制流程到达函数尾 [-Wreturn-type] } ^ server.c: 在函数‘allPersistenceDisabled’中: server.c:1488:1: 警告:在有返回值的函数中,控制流程到达函数尾 [-Wreturn-type] } ^ server.c: 在函数‘writeCommandsDeniedByDiskError’中: server.c:3948:1: 警告:在有返回值的函数中,控制流程到达函数尾 [-Wreturn-type] } ^ server.c: 在函数‘iAmMaster’中: server.c:5274:1: 警告:在有返回值的函数中,控制流程到达函数尾 [-Wreturn-type] } ^ make[1]: *** [server.o] 错误 1 make[1]: 离开目录“/home/redis-6.0.10/src” make: *** [all] 错误 2
|
原因是因为gcc版本过低,yum安装的gcc是4.8.5的。
1 2 3 4 5 6 7 8
| [root@localhost redis-6.0.10]# gcc -v Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper Target: x86_64-redhat-linux Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux Thread model: posix gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC)
|
因此需要升级gcc,升级过程如下:
1 2 3 4 5 6 7 8 9 10
| yum -y install centos-release-scl yum -y install devtoolset-9-gcc devtoolset-9-gcc-c++ devtoolset-9-binutils
#这句是临时的 scl enable devtoolset-9 bash
#修改环境变量 echo "source /opt/rh/devtoolset-9/enable" >> /etc/profile
gcc -v
|