Project/Target: "helloWorld - Debug":
The compiler's setup (GNU GCC Compiler) is invalid, so Code::Blocks cannot find/run the compiler.
Probably the toolchain path within the compiler options is not setup correctly?!
Do you have a compiler installed?
Goto "Settings->Compiler...->Global compiler settings->GNU GCC Compiler->Toolchain executables" and fix the compiler's setup.
Tried to run compiler executable 'C:\Program Files\/bin/gcc.exe', but failed!
Skipping...
Nothing to be done (all items are up-to-date).
这说明没有编译器,Goto "Settings->Compiler...->Global compiler settings->GNU GCC Compiler->Toolchain executables
这个告诉我们修复编译器的路径了,找到之后可以点击Auto-detect
来自动加载编译器(适用于写入环境变量的或者自带编译器的CodeBlocks),也可以点击...
找到MinGW
的安装路径选择即可(如图所示)。
然后你就可以run你的项目了!
截止到我安装的尽头今天,Code::Blocks的最新版本为16.01,
请建议官网下载,下载地址http://www.codeblocks.org/downloads
下载下来之后是一个可执行文件
然后点击安装就可以了,安装完成之后显示的界面如下
注意: 安装过程中会让你选择编译器,我因为没有下载任何编译器,所以没有检测到,导致后面的错误产生,如果在选择编译器时不是显示的no comp
编译器,在各个硬件平台几乎都支持
mingW 是一个开源的 符合 linux 下 c/c++习惯的windows平台的编译器,其集成了gcc.在最新的版本4.7.2 中,支持c++11
下载就不写了,baidu 或者 google下就能找到。
设置安装路径
设置支持c++11
就支持 c++1
codeblocks编译器的设置很简单。首先,右击项目,选择Build Options。然后,进入Compiler Settings,找到Compiler Flags选项。接下来,进入Settings -> Compiler -> Selected Compiler,选择GNU GCC Compiler。在Toolchain executables中,找到Compiler's Installation directory,选择gcc和g所在的文件夹。确保C Compiler是gcc,C Compiler是g,Debugger是GDB debugger。这样就完成了codeblocks编译器的设置。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *3* [codeblocks如何设置编译器](https://blog.csdn.net/yangguangqizhi/article/details/46374809)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
- *2* [codeblocks 配置编译器](https://blog.csdn.net/drbinzhao/article/details/6758354)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]