1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
MWrap
=====
MWrap is an interface generation system in the spirit of SWIG or matwrap.
From a set of augmented MATLAB script files, it generates a MEX gateway to desired C/C++/Fortran function calls and MATLAB function files to access that gateway, hiding the details of converting to and from MATLAB's data structures and of allocating and freeing temporary storage.
It is also compatible with modern Octave via `mkoctfile --mex`.
It makes wrapping C/C++/Fortran from MATLAB almost pleasant!
MWrap was created by David Bindel, who hosts his old version
at https://www.cs.cornell.edu/~bindel/sw/mwrap
Dependencies
------------
Building MWrap requires the following tools:
* A C compiler with C99 support and a C++ compiler with C++11 support
* [Bison](https://www.gnu.org/software/bison/) and [Flex](https://github.com/westes/flex)
* (Optional) [CMake](https://cmake.org/) 3.16 or newer (for the CMake build path)
* (Optional) [MATLAB](https://www.mathworks.com/products/matlab.html) with MEX build tooling when compiling wrappers with CMake
If you are using a Debian or Ubuntu based system, the required packages can be
installed via
```
sudo apt-get install build-essential bison flex cmake
```
Makefile build
--------------
Edit `make.inc` and then run `make`. The output will be a
standalone executable (`mwrap`) in the main directory. Bison and Flex are
required for this build path.
CMake build
-----------
Alternatively, create a build directory and run CMake:
```
mkdir -p build
cd build
cmake ..
cmake --build .
```
Cache options mirror the `make.inc` file. For example, to enable
MATLAB `classdef` support and the C99 complex helpers:
```
cmake -DMWRAP_ENABLE_MATLAB_CLASSDEF=ON -DMWRAP_ENABLE_C99_COMPLEX=ON ..
```
### Building the MATLAB/Octave examples
The example wrappers under `example/` can be generated through CMake by turning
on the `MWRAP_BUILD_EXAMPLES` option. This configuration runs `mwrap` to
produce the C++ gateway sources (and any requested MATLAB scaffolding).
By default the build stops after source generation, mirroring the legacy
Makefiles. The resulting files live under the build tree in per-example
subdirectories.
```
cmake -DMWRAP_BUILD_EXAMPLES=ON ..
cmake --build . --target mwrap_examples
```
To have CMake invoke MATLAB's compiler and produce loadable MEX binaries, add
`-DMWRAP_COMPILE_MEX=ON` when configuring. CMake will build the generated
sources into MEX targets, attach them to the `mwrap_examples` aggregate target,
and skip executing the binaries during the build.
When running the MATLAB smoke tests locally (for example, `ctest -R matlab-`),
build the `mwrap_examples` target beforehand so that the generated wrappers and
MEX binaries are available to the test runner.
The `MWRAP_MEX_BACKEND` cache entry selects which toolchain to use. MATLAB
backends require CMake's `FindMatlab` module to locate MATLAB's development
components, while Octave backends require the `mkoctfile` executable to be
available. Choosing `ALL` emits binaries for both environments (and therefore
requires both toolchains).
```
cmake -DMWRAP_BUILD_EXAMPLES=ON -DMWRAP_COMPILE_MEX=ON -DMWRAP_MEX_BACKEND=MATLAB ..
cmake -DMWRAP_BUILD_EXAMPLES=ON -DMWRAP_COMPILE_MEX=ON -DMWRAP_MEX_BACKEND=OCTAVE ..
cmake -DMWRAP_BUILD_EXAMPLES=ON -DMWRAP_COMPILE_MEX=ON -DMWRAP_MEX_BACKEND=ALL ..
```
If you leave `MWRAP_COMPILE_MEX` disabled, you can still invoke MATLAB or
Octave's `mex` tool manually using the produced `.cc` file and any support
sources that your project requires. Optional flags such as
`MWRAP_ENABLE_MATLAB_CLASSDEF` remain available while configuring the
examples.
Example usage
-------------
David Bindel's user's guide (`mwrap.pdf`) describes MWrap in detail; you can also look at the example subdirectories and the testing subdirectory to get some idea of how MWrap is used.
Alex Barnett also maintains a set of minimally complete tutorial examples of calling C/Fortran libraries (including OpenMP) from MATLAB/Octave, using MWrap, at https://github.com/ahbarnett/mwrapdemo
The `mwrap.1` man page was written by Nicolas Bourdaud.
Contributors and version history
--------------------------------
MWrap was originally written by David Bindel, c. 2009.
It was moved to github in c. 2015 in order to add new features, and is now maintained by Zydrunas Gimbutas, Alex Barnett, Libin Lu, Manas Rachh, Rafael Laboissière, and Marco Barbone.
**Version 0.33** (c. 2009)
Author: David Bindel <bindel@cs.cornell.edu>
- Initial revision, clone David's repository (c. 2015)
**Version 1.0** (c. 2020)
Contributors: Zydrunas Gimbutas, Alex Barnett, Libin Lu.
- Add support for 64-bit Matlab and gcc-4.6
- Add support for gcc 7.3+
- Add support for Matlab R2018a complex interleaved API
- Add support for C99 int32_t, int64_t, uint32_t, uint64_t
- Allow single precision Matlab inputs and outputs
**Version 1.1** (2022)
Contributors: Manas Rachh, Zydrunas Gimbutas.
- Add support for gfortran -fno-underscoring flag
**Version 1.2** (2025)
Contributors: Libin Lu, Rafael Laboissière, Zydrunas Gimbutas.
- Cope with error verbose directive in both versions 2 and 3 of Bison
- Add support for Matlab gpuArray
- Add support for char scalar
**Version 1.3** (2026)
Contributors: Marco Barbone, Zydrunas Gimbutas.
- Add CMake build system and GitHub Actions CI
- Validate input files before processing to prevent data loss
- Optimize MEX dispatch with integer ID + function pointer table
- Add `#include <stdint.h>` for int64_t/uint64_t on Windows msys2/mingw64
- Add Python mwrap implementation
Also see https://github.com/zgimbutas/mwrap/tags
|