summaryrefslogtreecommitdiff
path: root/INSTALL.txt
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2015-10-20 08:59:26 -0600
committerCharles Harris <charlesr.harris@gmail.com>2015-10-20 08:59:26 -0600
commita08437e12d6b6796f4b0beda49bce9adc37db63d (patch)
treee09edef2c87e623425d465552fc901e1176704f5 /INSTALL.txt
parent5fd1707ea9576b5a4efff5866a8e8d36f36ef6e9 (diff)
downloadnumpy-a08437e12d6b6796f4b0beda49bce9adc37db63d.tar.gz
Revert "Merge pull request #5614 from charris/cleanup-gh-5587"
Revert mingwpy modifications to distutils. They are causing problems for non-windows builds and it is better to wait until mingypy is further along. This reverts commit 96abd32de241864ee97f30357234cbc9a96c43ae, reversing changes made to 06af9918f6bf03b8d818ec834f9fb48db57d1489.
Diffstat (limited to 'INSTALL.txt')
-rw-r--r--INSTALL.txt32
1 files changed, 0 insertions, 32 deletions
diff --git a/INSTALL.txt b/INSTALL.txt
index 12fb47d44..6339cbb87 100644
--- a/INSTALL.txt
+++ b/INSTALL.txt
@@ -152,38 +152,6 @@ is broken). gcc 4.4 will hopefully be able to run natively.
This is the only tested way to get a numpy with a FULL blas/lapack (scipy
does not work because of C++).
-Carl Kleffner's mingw-w64 toolchain
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-Carl Kleffner has been working on mingw-w64 / OpenBLAS support and has put
-together toolchains for that option. The toolchains are available at
-https://bitbucket.org/carlkl/mingw-w64-for-python/downloads. The site.cfg
-should be configured like so:
-
- [openblas]
- libraries = openblaspy
- library_dirs = <openblaspath>/lib
- include_dirs = <openblaspath>/include
-
-The libopenblaspy.dll from <openblaspath>/bin must be copied to numpy/core
-before the build. For this mingw-w64 toolchain manual creation of the python
-import libs is necessary, i.e.:
-
- gendef python2.7.dll
- dlltool -D python27.dll -d python27.def -l libpython27.dll.a
- move libpython27.dll.a libs\libpython27.dll.a
-
-For python-2.6 up to python 3.2 use
-https://bitbucket.org/carlkl/mingw-w64-for-python/downloads/mingwpy_win32_vc90.tar.xz
-or
-https://bitbucket.org/carlkl/mingw-w64-for-python/downloads/mingwpy_amd64_vc90.tar.xz
-
-For python-3.3 and python-3.4 use
-https://bitbucket.org/carlkl/mingw-w64-for-python/downloads/mingwpy_win32_vc100.tar.xz
-or
-https://bitbucket.org/carlkl/mingw-w64-for-python/downloads/mingwpy_amd64_vc100.tar.xz
-
-
MS compilers
------------