Borrar filtros
Borrar filtros

Unable to find cl.exe executing vl_compilenn

10 visualizaciones (últimos 30 días)
A B
A B el 23 de Mzo. de 2017
Comentada: Justina Bonaventura el 8 de Abr. de 2021
Hi,
I am trying to execute
vl_compilenn
from here, but I get this error:
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.

Respuesta aceptada

Jan
Jan el 23 de Mzo. de 2017
Editada: Jan el 23 de Mzo. de 2017
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 comentarios
Jon Slow
Jon Slow el 22 de Oct. de 2017
Editada: Jon Slow el 22 de Oct. de 2017
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
XUEJIAO DENG el 28 de Mayo de 2018
I solve this problem by seeing: https://ww2.mathworks.cn/support/bugreports/1487958

Iniciar sesión para comentar.

Más respuestas (1)

Mohamed aymane Zizi
Mohamed aymane Zizi el 19 de En. de 2020
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!

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by