Call mex function using system()?

5 次查看(过去 30 天)
I downloaded a toolbox, which contains a pre-compiled mex file, foo.mexa64.
The calling syntax is a little bit confusing, but it works
system('/home/john/tools/foo.mexa64 param1 param2');
I tried to use
foo(param1, param2)
but I got an error, matlab says 'Invalid MEX-file, ...... cannot dynamically load executable'
It seems that this foo.mexa64 has been compiled to be an executable rather than a mex function. I searched the doc but it did not mention that I can build an executalbe with a suffix .mexa64.

采纳的回答

Walter Roberson
Walter Roberson 2021-3-3
In Linux, executables can have any valid file name. The file extension is not considered by the operating system when deciding how to execute the code. Instead, the "magic numbers" of the file are examined.
It happens that in MacOS and Linux, shared libraries and full programs have the same structure: shared libraries just do not happen to have an entry point marked in them.
... and .mex* files are, on all operating systems, shared libraries (in a format appropriate to the operating system.)
So, Yes, even if Linux cared about file extensions, the file type for a mexa64 is the same file type as for programs. But a typical mexa64 would not define a valid entry point.
  2 个评论
Xingwang Yong
Xingwang Yong 2021-3-3
Thank you, Walter. Do you have any idea that how the author managed to build a mex function so that it has an entry point?
Walter Roberson
Walter Roberson 2021-3-3
mex foo.c -o foo.mexa64
mex invokes standard compilation and linking processes. The output file name can be whatever you want. On MacOS and Linux the operating system doesn't care what the name is, beyond the usual restrictions that the names . and .. are reserved.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB Compiler 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by