C++ compiler produced errors.

5 visualizaciones (últimos 30 días)
chan yeoung woo
chan yeoung woo el 16 de Sept. de 2021
Editada: Lokesh el 19 de Mzo. de 2024
how can i solve this problem?
i install__MATLAB Support for MinGW-w64 C/C++ Compiler
i use R2021a
  3 comentarios
Prasanth Sunkara
Prasanth Sunkara el 16 de Sept. de 2021
Can you please share the "deploy" command output generated in the MATLAB cmd window? It would have some hints on why that error happened.
chan yeoung woo
chan yeoung woo el 17 de Sept. de 2021
Error executing command "touch -c /home/pi/MATLAB_ws/R2021a/C/Users/CODLab-DHKim/Documents/MATLAB/Examples/R2021a/raspberrypiio/ClassifyImageOnRaspberryPiViaSSHWithResNet50AndOpenCVExample/codegen/exe/raspi_fileRead_resnet/*.*;make -f raspi_fileRead_resnet_rtw.mk all MATLAB_WORKSPACE="/home/pi/MATLAB_ws/R2021a" -C /home/pi/MATLAB_ws/R2021a/C/Users/CODLab-DHKim/Documents/MATLAB/Examples/R2021a/raspberrypiio/ClassifyImageOnRaspberryPiViaSSHWithResNet50AndOpenCVExample/codegen/exe/raspi_fileRead_resnet". Details:
STDERR: /home/pi/MATLAB_ws/R2021a/C/Users/CODLab-DHKim/Documents/MATLAB/Examples/R2021a/raspberrypiio/ClassifyImageOnRaspberryPiViaSSHWithResNet50AndOpenCVExample/codegen/exe/raspi_fileRead_resnet/main.cpp:84:5: error: conflicting declaration of C function ‘int main(int, const char* const*)’
int main(int argc, const char * const argv[])
^~~~
In file included from /home/pi/MATLAB_ws/R2021a/C/Users/CODLab-DHKim/Documents/MATLAB/Examples/R2021a/raspberrypiio/ClassifyImageOnRaspberryPiViaSSHWithResNet50AndOpenCVExample/codegen/exe/raspi_fileRead_resnet/main.cpp:38:
/home/pi/MATLAB_ws/R2021a/C/Users/CODLab-DHKim/Documents/MATLAB/Examples/R2021a/raspberrypiio/ClassifyImageOnRaspberryPiViaSSHWithResNet50AndOpenCVExample/codegen/exe/raspi_fileRead_resnet/main.h:48:12: note: previous declaration ‘int main(int, char**)’
extern int main(int argc, char **argv);
^~~~
make: *** [raspi_fileRead_resnet_rtw.mk:488: main.cpp.o] Error 1

Iniciar sesión para comentar.

Respuestas (1)

Lokesh
Lokesh el 19 de Mzo. de 2024
Editada: Lokesh el 19 de Mzo. de 2024
Hi chan,
As per my understanding, you are encountering an error due to mismatch in the declaration of 'main' function between 'main.cpp' file and 'main.h' header file.
To resolve this issue, you need to ensure that the declaration of 'main' function in 'main.h' file matches its definition in 'main.cpp' file, particularly regarding the 'const' qualifier for 'argv' parameter.The original declaration in 'main.h' is 'extern int main(int argc, char **argv);' which conflicts with the definition in 'main.cpp' that uses 'const char * const argv[]'.
Please refer to the following steps to resolve the issue:
  • Open the 'main.h' file and locate the declaration of 'main' function
  • Modify the declaration to "extern int main(int argc, const char * const argv[]);" . Correcting the declaration in 'main.h' to 'extern int main(int argc, const char * const argv[]);' ensures that the the declaration matches its definition.
  • Save the changes and recompile to check if the issue has been resolved.
I hope this helps you in resolving the issue.

Categorías

Más información sobre C Shared Library Integration en Help Center y File Exchange.

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by