How do I debug MEX files on Solaris using gcc/gdb?
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
MathWorks Support Team
le 9 Oct 2013
Réponse apportée : MathWorks Support Team
le 25 Oct 2013
How do I debug MEX files on Solaris using gcc/gdb?
Réponse acceptée
MathWorks Support Team
le 25 Oct 2013
This Solution is specific to the GDB debugger on Solaris. For other configurations, please consult the documentation.
In R12.1 to debug MEX-files (and S-functions) using gcc and gdb, you need to compile it using the following code:
mex -g -f gccopts.sh mexfilename.c.
1. Start MATLAB with
matlab -Dgdb
2. At the gdb prompt type:
run -nojvm
3. At the MATLAB prompt type
dbmex on
4. Type the mexfilename.
5. At the gdb prompt type
shared mexfilename.mexsol
6. Type:
break mexFunction
7. Type
continue
You should then end up inside of the mexFunction
This was done using 2.95.2 gcc and 4.16 gdb.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Startup and Shutdown dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!