This release includes many of the features built over the last few minor version. Most notably:
- Fortran strings are now supported (in addition to character arrays).
- System libraries for things like OpenMP (
libgomp.so
), BLAS (libblas.so
), LAPACK (liblapack.so
), and the like are all automatically located in standard system paths and included in the generated wrapper when compilation with associated flags (-fopenmp
,-lblas
,-llapack
) are used in the wrapper. - Large arrays with more than 2^32 elements now transmit correctly because all
SIZE
s of arrays passed through the wrappers have been upgraded to 64-bit integers.