Environment error: “CodeBloks can't find compiler executable in your configured search path's for GNU GCC compiler”

codeblock安装后,提示cant find compiler executable in your configured search paths for GNU GCC Compiler

可能的情况有两个:

1)安装的是不带编译器的版本

2)安装了带编译器的版本,但是没有指定正确的路径。

解决办法:

对于第一种情况,直接在官网下载带有编译器的版本; 

官网链接:http://www.codeblocks.org/downloads/26#windows

{

或者下载MinGW-w64:http://sourceforge.net/projects/mingwbuilds/files/mingw-builds-install/mingw-builds-install.exe 下载后将../bin加到环境变量PATH中然后打开codeblocks中的settings/compiler/ToolChain executables  将Program Files下的c compiler 等等全部设置位置到你刚下载的bin文件下对应的

}

对于第二种情况,需要手动的指定编译器的路径。

具体操作如下:

a.在Code::Blocks的菜单中点击Settings->Compiler,如果安装了上面的GCC请在Selected Compiler选中GNU GCC Compiler.

b.点开Toolchain executables标签,点击Auto-detect之前的文件浏览,找到codebook安装的路径下面的MinGW文件夹,并且保存。

c.重新打开codeblock,问题应该就已经解决了。

Environment error: “CodeBloks can't find compiler executable in your configured search path's for GNU GCC compiler”

时间: 2024-10-13 06:42:25

Environment error: “CodeBloks can't find compiler executable in your configured search path's for GNU GCC compiler”的相关文章

exec: "go": executable file not found in $PATH异常的原因

尝试在机器上部署athens,运行时发生如下异常 error adding proxy routes ,exec: "go": executable file not found in $PATH. 一般来说go程序的运行环境是不需要安装go的.在交叉编译的加持下,分发部署更加方便.但是如果go程序中通过exec的方式执行了其他go命令,那么部署环境自然也需要安装go,且export到path中.athens有了这样的逻辑才导致上述异常. 原文地址:https://www.cnblog

Eclipse:Error:could not find java SE Runtime Environment/Error: could not find java.dll

发生这种错误的原因是什么呢,正常情况下都是你的系统中装了两个版本的JDK,比如装了1个1.6版本的JDK,然后再安装1个1.7版本的JDK,这个时候你打开eclipse的时候就会弹出一个对话框,提示:Error:could not find java SE Runtime Environment. 这个时候你也可以在命令行中输入"java -version",可以看到相关的错误提示: 解决方式有三种: 1.卸载掉其中一个版本,如果卸载掉的版本是已经配置了环境变量的,记得重新配置. 2.

Error “can't use subversion command line client : svn” Probably the path to Subversion executable is wrong

错误提示如图. 大概意思就是SVN路径不对 解决方法如下: 首先下载Subversion 1.8.13(1.8) 下载链接(https://www.visualsvn.com/downloads/) 然后解压到一个文件夹中. 将会有一个文件夹bin, 然后 去设置- >版本控制- > Subversion 按照图片: 保存,问题解决! Error "can't use subversion command line client : svn" Probably the pa

python selenium error “Geckodriver executable needs to be in PATH”

ERROR: Geckodriver executable needs to be in PATH 我用的是ubuntu 16.04 解决办法: 下载    geckodriver  (github下载链接) 解压缩 tar zxvf  geckodriver-v0.15.0-linux64.tar.gz  ##解压出来的是一个单文件 ##执行  copy geckodriver  /usr/bin 再次运行无此错误

Error: opening registry key 'Software\JavaSoft\Java Runtime Environment' Error: could not find java.dll

java -jar yxCollector-1.1.0.jarError: opening registry key 'Software\JavaSoft\Java Runtime Environment'Error: could not find java.dllError: Could not find Java SE Runtime Environment. Error: opening registry key 'Software\JavaSoft\Java Runtime Enviro

Selenium::WebDriver::Error::WebDriverError:Unable to find standalone executable解决办法

情况描述: 在Watir-Webdriver环境下运行脚本报错(红色标记部分): C:\>irbirb(main):001:0> require 'watir-webdriver'=> trueirb(main):002:0> Watir::Browser.new :ieSelenium::WebDriver::Error::WebDriverError: Unable to find standalone executable. Please download the IEDri

codeblocks “can't find compiler executable in yourconfigured search ……”

新安装的codeblocks 16.01,安装后打开提示如下,没法用..原因是编译器并没有找对自己安装的 mingw 的安装位置. 解决办法:如下图点击 Auto-detect 之后,会看到位置信息变成了自己安装路径下的 Mingw 的路径(其实打开的时候,你会发现,下面圆框里面的路径并不是mingw的真实路径). 点击 ok,保存即可.这样就可以编译基本的C++程序了. 但是引入某些库的时候会提示没有声明或者不存在,比如: 因为unordered_map是C++11新增的特性,我们只需要让编译

golang executable file not found in $PATH

最近使用docker,遇见executable file not found in $PATH,深究一下源码,追溯到golang内置包,看代码 //寻找可执行的文件,取文件的mode(二进制形式) func findExecutable(file string) error { d, err := os.Stat(file) if err != nil { return err } //看属性 if m := d.Mode(); !m.IsDir() && m&0111 != 0 

HOWTO Install the MinGW (GCC) Compiler Suite

Posted July 25th, 2008 by mingwadmin getting started install mingw Automated Installer If you are new to MinGW, see the MinGW Getting Started instructions to use the automated GUI or manual CLI (Command Line Interface) installers. What follows below