或者你也可以试试我准备的MinGW离线懒人包。
接着安装CLion,在ToolChain配置界面指定MinGW的安装位置即可(下图是安装完毕后的配置图,并非欢迎界面的配置图,但是两者内容都是一样的):
接着新建一个HelloWord项目,写点C++11的新特性代码:
#include <iostream>using namespace stdint main(){ cout <<"Hello, World!" <<endlauto name = "hankcs"cout <<name <<endlreturn 0}
编译运行,咦?出错了:
\HelloCLion\main.cpp: In function 'int main()':\HelloCLion\main.cpp:7:10: error: 'name' does not name a type auto name = "hankcs"^\HelloCLion\main.cpp:8:13: error: 'name' was not declared in this scope cout <<name <<endl^CMakeFiles\HelloCLion.dir\build.make:53: recipe for target 'CMakeFiles/HelloCLion.dir/main.cpp.obj' failedmingw32-make.exe[3]: *** [CMakeFiles/HelloCLion.dir/main.cpp.obj] Error 1CMakeFiles\Makefile2:59: recipe for target 'CMakeFiles/HelloCLion.dir/all' failedmingw32-make.exe[2]: *** [CMakeFiles/HelloCLion.dir/all] Error 2CMakeFiles\Makefile2:71: recipe for target 'CMakeFiles/HelloCLion.dir/rule' failedmingw32-make.exe[1]
其他可能需要安装的软件
点击【Trust Project】即可。
等待 CLion 将项目文件上传到 Remote Host 中。
上传完成会出现上图所示的窗口,点击【OK】即可。
在 CLion 右上角,选择 【Target All】,然后点击左边的 【Build】按钮( 小锤子 )。
解决方案:
现象:
解决方案:
在 CLion 右上角,选择 【Target All】,然后点击左边的 【Build】按钮,进行构建。
Message 窗口出现如上所示的消息,即表示构建成功。
配置 Executable 为通过 make 编译出来的 redis-server 执行文件。
如下图所示:
点击【OK】保存即可。
点击 CLion 左上交的【Run】或者【Debug】按钮。
在 Console 打印如上所示的消息,表示运行成功。
在 aeProcessEvents 方法的 402 行打上断点。
然后就可以通过 redis-cli 命令连接到我们启动的 redis-server 进行调试了。
1、点击设置2、点击icloud
3、在icloud下找到删除账户
4、选择删除还是保留icloud safari数据和通讯录信息
5、输入APPLE ID密码即可。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)