diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2016-12-12 12:31:11 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-12 12:31:11 -0500 |
commit | 78b06bdc2f463852dd59ec8ceea79a8290a6297f (patch) | |
tree | f94d253b5a8075be9c8d2832d73567f8ad8751f0 /doc | |
parent | f55516951b77baa475a3e712f5f7cb831fb90c0a (diff) | |
parent | 21eeac2ebffd88461ae95e9d0dd487b12fab993e (diff) | |
download | numpy-78b06bdc2f463852dd59ec8ceea79a8290a6297f.tar.gz |
Merge pull request #8355 from rolk/8355_mingw_py35
Fix building extensions with MinGW for Python 3.5
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.13.0-notes.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/release/1.13.0-notes.rst b/doc/release/1.13.0-notes.rst index d41b06c37..eed3f7266 100644 --- a/doc/release/1.13.0-notes.rst +++ b/doc/release/1.13.0-notes.rst @@ -74,6 +74,18 @@ behaviour is recovered if ``axis=None`` (default). Improvements ============ +Partial support for 64-bit f2py extensions with MinGW +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Extensions that incorporate Fortran libraries can now be built using the free +MinGW_ toolset, also under Python 3.5. This works best for extensions that only +do calculations and uses the runtime modestly (reading and writing from files, +for instance). Note that this does not remove the need for Mingwpy; if you make +extensive use of the runtime, you will most likely run into issues_. Instead, +it should be regarded as a band-aid until Mingwpy is fully functional. + +.. _MinGW: https://sf.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/6.2.0/threads-win32/seh/ + +.. _issues: https://mingwpy.github.io/issues.html Changes ======= |