2、设置断点,并确保它们在你附加到进程后会被击。
3、启动该进程。你可以在IDE之外或使用内置的终端,视图|工液肆具窗口|终端或Alt+F12来做。
4、在CLion中,从主菜单中调用运行|附加到进程或按Ctrl+Alt+F5。
5、在条目列表中,搜索你的进程,调试器连接成功后,你就可闹缓轿以进行调用哪猛了。以上是clion调用其他文件夹下的代码方法。
首先Windows用户需要安装MinGW,有GUI可以用,包不用下载很多,基本的几个就够用:或烂咐碰者你也可以试试我准备的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]
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)