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

时间:2023-03-09 06:51:35
codeblocks “can't find compiler executable in yourconfigured search ……”

新安装的codeblocks 16.01,安装后打开提示如下,没法用。。原因是编译器并没有找对自己安装的 mingw 的安装位置。

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

解决办法:如下图点击 Auto-detect 之后,会看到位置信息变成了自己安装路径下的 Mingw 的路径(其实打开的时候,你会发现,下面圆框里面的路径并不是mingw的真实路径)。

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

点击 ok,保存即可。这样就可以编译基本的C++程序了。

但是引入某些库的时候会提示没有声明或者不存在,比如:

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

因为unordered_map是C++11新增的特性,我们只需要让编译器支持C++11就行了。

这个时候,只需要勾选如下如所示:

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

点击ok,保存即可

编译成功:

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

主要是之前安装的环境不知道为啥不能用了,就又装了一遍,真麻烦。。。。。。