安装
- 安装Eclipse
Eclipse下载页
能够选择Eclipse IDE for C/C++ Developers(内置CDT插件)
也能够选择安装其它版本号之后再安装CDT插件。 - 安装CDT插件
CDT插件主页 - 安装MingGW(32位编译套件)。
MingGW主页
下载 mingw-get-setup.exe
安装完毕后Mingw以及MSYS的bin文件夹应该已经自己主动被加入到了Path环境变量中 - 安装Mingw-w64(64位编译套件)
Mingw-w64主页
下载 mingw-w64-install.exe (安装时可能须要“以管理员身份执行”)
安装完毕后将Mingw-w64的bin文件夹加入到Path环境变量中
Configuring Eclipse for using with MSYS2
Eclipse中启动程序时出现“Launch failed. Binary not found.”错误
“Launch failed. Binary not found.” error on CDT Kepler Eclipse
使用g++编译程序时,出现
“the application has requested the runtime to terminate it in an unusual way”错误以及
“Cannot create temporary file in C:\WINDOWS\: Permission denied”错误
程序不能正常启动,命令行下运行出现 (0x0000007b)错误
选择C++编译器版本号(如C++11/14)
调试程序时显示STL容器的值
Windows > Preferences > C/C++ > Debug > GDB
分别设置GDB debugger 以及 GDB command file的路径。
MingGW的话,应该设置为 MinGW安装文件夹\bin\gdb-python27.exe 和 MinGW安装文件夹\bin\.gdbinit
Mingw-w64的话,应该设置为 Mingw-w64安装文件夹\bin\gdb.exe 和 Mingw-w64安装文件夹\etc\gdbinit
配置Boost库
无法设置断点
How can I enable breakpoints in Eclipse/CDTAsk