How do I create a C shared library with MATLAB Compiler 4.15 (R2011a) that can be used in Microsoft Visual Studio 2010 Express Edition?

8 views (last 30 days)
I am using MATLAB Compiler 4.15 (R2011a) and would like to create a C shared library using the example in the documentation and then use this shared library in Microsoft Visual Studio 2010 Express Edition on a 64 bit Windows Platform. Specifically, I would like to refer to an example that shows:
1. How to create a shared library using MATLAB Compiler with Microsoft Visual Studio 2010 Express Edition.
2. How to initialize and use the generated C shared library in the driver program in my Visual Studio environment (as opposed to using mbuild within MATLAB).

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 18 Oct 2013
The steps to create a C shared library from within MATLAB are:
1. Select the compiler to be used by MCC:
mbuild -setup
2. Compile your MATLAB files into a DLL (on Windows):
mcc -B csharedlib:mylib <MATLAB files>
The -B csharedlib option is a bundle option that expands into
-W lib:<libname> -T link:lib
The -W lib:<libname> option tells the MATLAB Compiler to generate a function wrapper for a shared library and call it libname. The -T link:lib option specifies the target output as a shared library.
Note the directory where the Compiler puts the shared library because you will need it later on. This step will produce mylib.dll, mylib.lib, and mylib.h. You can add the -g option to produce a DLL suitable for debugging in MSVC (or your own IDE).
Alternatively, you may also use DEPLOYTOOL and choose C Shared library as the target to achieve this.
3. Add mylib.lib to your MSVC (or your own IDE) project.
4. Make sure to call the initialization and termination routines from your code before calling any of the exported DLL functions.
To initialize the shared library and the MCR, you need to call:
mclInitializeApplication(NULL,0);
mylibInitialize();
Afterwards, you should call the termination routine:
mclTerminateApplication();
mylibTerminate();
5. You can call the functions compiled from the MATLAB code by invoking the exported DLL functions from your C code. For example:
Example:
In MATLAB:
1. Write a MATLAB function named foo and save it as foo.m with the following code:
function y = foo(x)
y = x+1;
2. Select the compiler to be used by MCC:
mbuild -setup
3. Use the MATLAB Compiler to compile foo.m into C code that can be included in a C shared library:
mcc -B csharedlib:foolib foo.m
This will generate the following files:
foolib.ctf
foolib.h
foolib.dll
foolib.lib
foolib.exp
foolib_mcc_component_data.c
foolib.c
foolib.exports
In Microsoft Visual 2010 Express Edition
1. Start the Microsoft Visual 2010 Express Edition IDE.
2. Go to FILE and NEW. In the Project Types field, select Visual C++ Projects. In the Templates field, select Win32 Console Project. In the Name field type "test". Click OK. In the Win32 application Wizard, select Application Settings. Under Additional Options, check Empty project. Click Finish.
3. Select the Solution Explorer tab. Select Source Files, select Project menu option, select Add New Item. In the Templates tab select C++ Source file, type "foowrap.c" in the File name field and click Open.
4. Enter the following code in the foowrap.c file:
/* Include the MCR header file and the library specific header file
* as generated by MATLAB Compiler */
#include "mclmcr.h"
#include "foolib.h"
#include <stdio.h>
int main()
{
mxArray *x_ptr;
mxArray *y_ptr=NULL;
double *y;
double ret;
/* Call the MCR and library initialization functions */
if( !mclInitializeApplication(NULL,0) )
{
fprintf(stderr, "Could not initialize the application.\n");
exit(1);
}
if (!foolibInitialize())
{
fprintf(stderr,"Could not initialize the library.\n");
exit(1);
}
/* Create an mxArray to input into mlfFoo */
x_ptr = mxCreateDoubleScalar(1);
/* Call the implementation function */
/* Note the second input argument should be &y_ptr instead of y_ptr*/
mlfFoo(1,&y_ptr,x_ptr);
/* The return value from mlfFoo is an mxArray so we must extract the data from it */
y = mxGetPr(y_ptr);
ret = *y;
/* Print a double precision number*/
printf("The output of foo is %f\n",ret);
/* Call the library termination function */
foolibTerminate();
mxDestroyArray(x_ptr);
mxDestroyArray(y_ptr);
mclTerminateApplication();
return 0;
}
5. Select your project in the Solution Explorer. From Project menu option, select Properties. Open the Linker folder and select the General category. Add the location of foolib.lib and the following
$MATLABROOT\extern\lib\<arch>\microsoft\msvc71
in the Additional Library Directories field. Note $MATLABROOT is the MATLAB root directory on your machine, as returned by typing
matlabroot
at the MATLAB Command Prompt.
For example, you may have
c:\foo;$MATLABROOT\extern\lib\<arch>\microsoft\msvc71
in the Additional Library Directories field.
Note that for MATLAB releases starting with MATLAB 7.2 (R2006a), there are no subfolders under
$MATLABROOT\extern\lib\<arch>\microsoft
Therefore add this folder instead of
$MATLABROOT\extern\lib\<arch>\microsoft\msvc71
if you are using MATLAB 7.2 or later.
6.After specifying the library directories, select the Input category and type the following libraries in the Additional Dependencies field:
mclmcrrt.lib
foolib.lib
7. Open C/C++ folder, select General. Add to Additional Include directories field:
$MATLABROOT\extern\include
Also add to the Additional Include directories field the directory in which foolib.h is located.
8.Under C/C++ folder, select Code Generation. In the Runtime Library, select Multi-threaded DLL. Click OK.
9. Check the target machine flag in Visual Studio: This should correspond to the libraries that you are linking against. For example, if you specify ’x64’, it should link against the 64-bit MATLAB libraries. If you specify 'Win32', it should link against 32-bit MATLAB libraries.
For additional information on how the target platform of the Visual Studio project can be changed, refer to
"How to: Configure Visual C++ Projects to Target 64-Bit Platforms" at:
<http://msdn2.microsoft.com/en-us/library/9yb4317s(VS.80).aspx>
10. Go to Build->Build Solution. You should now have built test.exe.
Please make sure to choose 'x64' option from the drop down menu for the 'Solution Platform' window in Visual Studio before building your project if you are linking against '64 bit' libraries.After building the project, an additional folder named 'x64' will be created in your current project working directory and your executable will be placed in it.
11. Place foolib.dll in folder where test.exe is located, if you have changed the Visual Studio Platform to 64bit then your executable will be in a folder 'x64'.
12. Run your application.
NOTE: The <arch> folder mentioned above referred to "win32" or "win64" folder depending on whether you want to create a 32 bit or 64 bit C shared library respectively.

More Answers (0)

Categories

Find more on C Shared Library Integration in Help Center and File Exchange

Products


Release

R2011a

Community Treasure Hunt

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

Start Hunting!