Matlab提示Could not find the compiler cl on the DOS path

更新时间:2024-05-07 05:36:01 阅读量: 综合文库 文档下载

说明:文章内容仅供预览,部分内容可能不全。下载后的文档,内容与下面显示的完全一致。下载之前请确认下面内容是否您想要的,是否完整无缺。

仅解决在安装编译器成功的前提下,出现mcc找不到cl的问题、

1、在matlab命令行中按照普通的步骤输入“mex -setup”,选择编译器,并进行安装;

2、 执行mcc出现错误

>mcc -B cpplib:文件名.dll 文件名.m -C

Could not find the compiler \

Use mex -setup to configure your environment properly.

...\\MATLAB7\\BIN\\WIN32\\MEX.PL: Error: Unable to locate compiler.

3、edit compopts.bat

找到 rem ******************************************************************** rem General parameters rem ******************************************************************** set MATLAB=%MATLAB% set VSINSTALLDIR= *************************************************************************** Warning: MEX-files generated using Microsoft Visual C++ 2013 require that Microsoft Visual Studio 2013 run-time libraries be available on the computer they are run on. If you plan to redistribute your MEX-files to other MATLAB users, be sure that they have the run-time libraries. *************************************************************************** set VCINSTALLDIR=%VSINSTALLDIR%\\VC

在 “VSINSTALLDIR=” 后面添加 自己安装VS的安装目录、 如:E:\\Program Files\\Microsoft Visual Studio 12.0 再次执行mcc,即可成功。

本文来源:https://www.bwwdw.com/article/wx5g.html

Top