Xcode can not find tmwtypes.h file from code generated using Matlab Coder
22 次查看(过去 30 天)
显示 更早的评论
I've translated a Matlab algorithm using Matlab Coder. I am in the process of integrating it into a dummy Xcode project. I'm getting the following error:
"tmwtypes.h" file not found
When I searched through the generated code I did confirm that no such file was generated. When I commented out the line, the same issue emerged for:
- "mex.h"
- "emlrt.h"
0 个评论
回答(2 个)
cui,xingxing
2019-10-12
编辑:cui,xingxing
2024-4-27
in windows vs, it is here: C:\Program Files\MATLAB\R2019a\extern\include
-------------------------Off-topic interlude, 2024-------------------------------
I am currently looking for a job in the field of CV algorithm development, based in Shenzhen, Guangdong, China,or a remote support position. I would be very grateful if anyone is willing to offer me a job or make a recommendation. My preliminary resume can be found at: https://cuixing158.github.io/about/ . Thank you!
Email: cuixingxing150@gmail.com
1 个评论
Ryan Livingston
2020-10-15
You can also use packNGo to package dependencies of the generated code. That knows how to search for such files.
Ryan Livingston
2015-3-6
It appears that you have generated MEX code rather than standalone code. MEX C/C++ code is designed to be compiled and run in the MATLAB environment. Whereas standalone code is designed to be run outside of MATLAB.
When generating code, use one of the non-MEX build targets:
codegen foo -args {1} -config:lib
The documentation has more information on the standalone targets, LIB,DLL,EXE and how to specify which one is active.
2 个评论
Sam
2020-10-14
Dear Ryan,
I have a similar issue with the simulink coder. I am currently working on a simple example in which I want to convert a simulink subsystem (two inputs and one output) which has the following function: y = x1-x2.
I want to convert this block to c-code and to use and integrate this code on a TI TMS570LS microcontroller.
I would like to integrate the generated code into my excisting "code composer studio" (CCS) project.
In the Simulink "Code Generation" setting, I have selected grt.tlc as the target system file. If I do this, CCS requires a lot more header files which are not included in the generated simulink coder folder and these headers seems to be only required in conjunction with MATHWORKS (which I dont want on my microcontroller).
Thank you a lot
Sam
2020-10-15
In the meantime I found the solution. One needs to activate the "Package Code and Artifacts" option in "Code Generation" Settings. Within the generated package, one finds the folder with the required MATLAB headers.
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!