Build error: C compiler produced errors. See the Build Log for further details.
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi folks,
I'm currently trying to export a mex-file with Matlab Coder. If I check my code for issues everything is okay. But if I try to generate the mex-file the following error occurs:
The build log gives the following message:
error: unknown type name 'struct0_T'
I don't know why and have no solution on this.
The build log also writes the following:
FAILED: build/win64/simcycle_ext_terminate.o
There are lots of errors like this. It seems there is a problem generating these .o-files?
Maybe someone got an idea on solving this?
2 comentarios
Darshan Ramakant Bhat
el 10 de Nov. de 2020
Can you please explain your workflow in little bit more detail ? What do you mean by "trying to export a mex-file" ?
Also if possible please attach a sample script along with the commands to reproduce this issue.
Respuestas (1)
Sukrut Tamhankar
el 19 de Nov. de 2020
The error "unknown type name" occurs sometimes in the compilation for some of the structures or enumerations. If these are properly defined and used but not appearing in the code, it results in this error message while compiling.
A possible workaround in this case would be to collect the names of all the structures/enums that are erroring out as unknown type name/missing and define them in a header file, in the same way as we would expect them to appear in "Rte_Type.h" and then include this file in the "Code Generation >> Custom Code" section in the Model Configuration Parameters, something like this:
# ifndef NAME_OF_STRUCT
# define NAME_OF_STRUCT
# endif
0 comentarios
Ver también
Categorías
Más información sobre MATLAB Compiler en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!