Project

General

Profile

Installing ATLAS on Windows » History » Version 1

Redmine Admin, 11/19/2015 02:59 PM

1 1 Redmine Admin
# Installing ATLAS on Windows #
2
3
ATLAS is a moving target.  With each version, configuration changes.  It could once use the clapack_cmake sources, but as of 3.10.X, it appears that one must have a fortran compiler and one must build with the full lapack.
4
5
Cygwin should be installed as described [here](Preparing a Windows machine for Bilder), and a fortran compiler can be obtained from MinGW-w64 as described [here](Installing MinGW).
6
7
On Windows 7, you must turn off user notification in UserAccountControlSettings and reboot to build ATLAS.  If not, you may see
8
9
~~~~~~~~~~~~~~
10
cd bin/ ; ./xatlas_install -1 0 -a 1
11
/bin/sh: ./xatlas_install: Permission denied
12
make[1]: *** [build] Error 126
13
~~~~~~~~~~~~~~
14
15
16
ATLAS appears to have problems with parentheses in paths.  To get around this
17
18
 * On Win64 do
19
20
~~~~~~~~~~
21
mkdir /ProgramFilesX86
22
mount "C:/Program Files (x86)" /ProgramFilesX86
23
~~~~~~~~~~
24
25
and additionally source `bilder/setatlaspath.sh`.  Check your path afterwards.  Our current observation is that this removes only some irrelevant directories from the path, but your mileage may vary.  At this point, a simple configuration command like
26
27
~~~~~~~~~~
28
<path to your>/configure \
29
  --prefix=/winsame/contrib-vs9/atlas-3.11.17-ser \
30
  -b 64 \
31
  --with-netlib-lapack-tarfile=<path to your>/lapack-3.4.2.tgz
32
~~~~~~~~~~
33
34
(where 64 might be replace by 32) should succeed.