Do I need the MinGW-w64 Compiler to load library (.c/.h/.dll) in simulink?
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I found the example to import a dll in Simulink here: How can I use a DLL file in Simulink? - MATLAB Answers - MATLAB Central (mathworks.com)
But trying the example Simulink gives me an error: Simulink need a support of a compiler.
If I have Visual Studio with its compiler, how can I set that compiler for Matlab or Simulink?
Thank you in advance
0 comentarios
Respuestas (1)
Venkat Siddarth Reddy
el 11 de Sept. de 2024
Editada: Venkat Siddarth Reddy
el 11 de Sept. de 2024
Hi Lorenza,
You can try the following command to configure the C/C++ compiler to be used by the MATLAB
mex -setup c % for C Compiler
mex -setup c++ % for c++ Compiler
The above command provides the current compiler being used by MATLAB and links to other available compilers corresponding to the target language.To change the default, select one of those links.
To learn more about configuring the compiler, please refer to the following documentation:
Regards,
Venkat Siddarth V
0 comentarios
Ver también
Categorías
Más información sobre Simulink Coder en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!