Unable to find cl.exe executing vl_compilenn
5 次查看(过去 30 天)
显示 更早的评论
Hi,
I am trying to execute
vl_compilenn
Error using vl_compilenn>check_clpath (line 599)
Unable to find cl.exe
Error in vl_compilenn (line 417)
cl_path = fileparts(check_clpath()); % check whether cl.exe in path
I am using MinGW64 Compiler. I already read a potential fix could be adding the path to cl.exe to your environment variables, but how do I know where it's located? Am at a loss right now.
0 个评论
采纳的回答
Jan
2017-3-23
编辑:Jan
2017-3-23
Reading the help section of a failing code is obligatory. In vl_compilenn you find:
% Compilation on Windows with MinGW compiler (the default mex compiler in
% Matlab) is not supported. For Windows, please reconfigure mex to use
% Visual Studio C/C++ compiler.
Install the SDK7.1, which is explained in many threads here in this forum.
3 个评论
Jon Slow
2017-10-22
编辑:Jon Slow
2017-10-22
But I managed to install SDK7.1 and VS 2010 C++ anyway, new error:
>Error using vl_compilenn>check_compability (line 535) Unsupported VS C++ compiler, ver >=14.0 required (VS 2015). Error in vl_compilenn (line 197) check_compability(arch);
I don't know how to fix this, I had VS 2017 community installed, with SDK and compiler. Matlab only works with SDK 7.1 while Matconvnet compiler only works with VS 2015 or later. The compatibility here is really stupid.
XUEJIAO DENG
2018-5-28
I solve this problem by seeing: https://ww2.mathworks.cn/support/bugreports/1487958
更多回答(1 个)
Mohamed aymane Zizi
2020-1-19
The solution I figured out is hardcoding the path link.
in vl_compilenn.m file you find the line
cl_path = fullfile(cc.Location, 'VC', 'bin', 'amd64');
so basically you changed accordinally to where cl.exe is located, in my case I changed it to this.
cl_path = 'C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\bin\Hostx64\x64';
and worked perfectly!
wish that helps you!
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!