When using another debugger, the xmcImportFunctionSettings
command can be used to set up the debugging
tool.
Debugging the C/C++ function requires the simulation model to be built in the debug mode, instead of being built for release. To enable the debug build, use the following command:
xmcImportFunctionSettings('build', 'debug')
Refer to xmcImportFunctionSettings Command Syntax for more
information on the command options. Enabling debug mode in Windows operating system
causes Model Composer to return the following messages in the
MATLABĀ®
Command
Window:
Imported C/C++ code will be built with MinGW compiler. You can use gdb to debug your C/C++ code.
MATLAB process ID is 4656.
You can also get the process ID by typing "feature getpid" in the MATLAB command window.
The information returned above can be used to launch the default debug
tool, and connect to the MATLAB process, as
described in the following sections.
Tip: You can restore the release build environment, using the
'release' value of the 'build'
option:
xmcImportFunctionSettings('build','release')