summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2013-01-21 22:22:22 +0000
committerDavid Cournapeau <cournape@gmail.com>2013-01-21 22:22:22 +0000
commite0e3a8732859639917be89f525bd359cf8d608d7 (patch)
tree0ad00274441443a3720c9feb1f96433c3a3d5a83
parent8a28fd0c17f412fbbe71625a0508414ef36ea016 (diff)
downloadnumpy-enable_separate_by_default.tar.gz
DOC: tweak the release notes for separate compilation.enable_separate_by_defaultenable_separate_by_default
-rw-r--r--doc/release/1.8.0-notes.rst7
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/release/1.8.0-notes.rst b/doc/release/1.8.0-notes.rst
index 764b9683a..559ec9e99 100644
--- a/doc/release/1.8.0-notes.rst
+++ b/doc/release/1.8.0-notes.rst
@@ -29,7 +29,12 @@ pointer to the data was hashed as an integer. Now, the hash function uses
the tuple-hash algorithm to combine the hash functions of the elements of
the scalar, but only if the scalar is read-only.
-Forcing the old, one file per extension build may be enabled by exporting the
+Numpy has switched its build system to using 'separate compilation' by default.
+(In previous releases this was supported, but not default.) This should produce
+the same results as the old system, but if you're trying to do something
+complicated like link numpy statically or using an unusual compiler, then it's
+possible you will encounter problems. If so, please file a bug, and as a
+temporary workaround you can re-enable the old build system by exporting the
shell variable NPY_SEPARATE_COMPILATION=0.
New features