Why does running a MEX file on MacOS crash MATLAB when mexerrmsgtxt is used?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Passing an error message back from a MEX file using mexerrmsgtxt from FORTRAN crashes MATLAB completely. I observed the same problems with R2014b and R2016a. I can only replicate the latter one because I have a current version of Xcode. Below is a stripped down version of a MEX function that does nothing but return an error message, and yet still crashes.
I am currently running OS X 10.11.6, Xcode fully updated, MATLAB R2016a freshly installed. I had the same problem a year ago with an older version of OS X and R2014b. The formatted text for some reason puts the #include statement outside of the formatted text, but it is the first line of the file.
Compiled within MATLAB using mex crasher.F
#include "fintrf.h"
SUBROUTINE MEXFUNCTION(NLHS, PLHS, NRHS, PRHS)
mwPointer PLHS(*), PRHS(*)
integer NLHS, NRHS
C
call mexerrmsgtxt('Exiting at entry')
c
return
end
Antworten (1)
Philip Borghesani
am 11 Aug. 2016
Bearbeitet: Philip Borghesani
am 11 Aug. 2016
What FORTRAN compiler and version are you using? The only supported compiler I see is Intel FORTRAN Composer XE (2013) Supported Compilers. The reason for the limited list is a known incompatibility in exception handling models for other compilers: Any error thrown during mex execution may take down MATLAB.
Siehe auch
Kategorien
Mehr zu Write C Functions Callable from MATLAB (MEX Files) finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!