1. Clion+MAC+Redis-3.0-annotated环境搭建
参考:
https://github.com/huangz1990/redis-3.0-annotated
https://gitee.com/dumpcao/redis-3.0-annotated-cmake-in-clion
https://tool.4xseo.com/a/12910.html
1.1 下载并导入Clion
shell
git clone https://gitee.com/dumpcao/redis-3.0-annotated-cmake-in-clion.git
cd redis-3.0-annotated-cmake-in-clion
1.2 然并卵用,可恶的M1
M1芯片对早期的Redis来说,好像是寄存器不太一样
2. Clion+MAC+Redis-6 环境搭建
早期的redis用不了,那就用新一点的吧。。。
参考
2.1 下载
shell
wget https://download.redis.io/releases/redis-6.2.2.tar.gz
tar -zxvf redis-6.2.2.tar.gz
cd redis-6.2.2
2.2 直接用Clion打开改项目就可以了,Clion可以识别Makefile
点击
如有有报错pkg-config
,那就先安装一下。
shell
brew install pkg-config
接下来就可以调试了。
1.3 调试