summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2010-06-01 19:21:15 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2010-06-01 19:21:15 (GMT)
commitc9260b39782edf31e0f6bba80ce53433f2c0ae5c (patch)
treee657f678142c64f0f860f5da6688a075897e7383 /release_docs
parentb5542f6bb9f83d75adcbc3e9b9cbed3228d5ae25 (diff)
downloadhdf5-c9260b39782edf31e0f6bba80ce53433f2c0ae5c.zip
hdf5-c9260b39782edf31e0f6bba80ce53433f2c0ae5c.tar.gz
hdf5-c9260b39782edf31e0f6bba80ce53433f2c0ae5c.tar.bz2
[svn-r18932] Update Cygwin install instructions
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/INSTALL_Cygwin.txt35
1 files changed, 14 insertions, 21 deletions
diff --git a/release_docs/INSTALL_Cygwin.txt b/release_docs/INSTALL_Cygwin.txt
index 064c729..8416dfc 100644
--- a/release_docs/INSTALL_Cygwin.txt
+++ b/release_docs/INSTALL_Cygwin.txt
@@ -5,7 +5,7 @@
Preconditions:
--------------
-1. Installed Cygwin 1.5.17 or higher
+1. Installed Cygwin 1.7.5 or higher
To install the Cygwin net release, go to http://www.cygwin.com and
click on "Install or update now!" icon. This will download a GUI
@@ -25,25 +25,18 @@ Preconditions:
2.1 C/C++ Compilers HDF5-1.8 Supported
- gcc-3.4.4 is included in Cygwin, which includes:
- gcc : GNU C compiler
- gcc-g++: GNU C++ compiler
+ gcc (4.3.4), which includes:
+ gcc4-core : C compiler
+ gcc4-g++ : C++ compiler
+ gcc4-fortran : fortran compiler
- 2.2 Fortran Compiler HDF5-1.8 Supported
+ 2.2 Using Compilers Not Supported
- HDF5-1.8 supports g95(GCC 4.0.1 (g95!) Jul 22 2005) and higher.
-
- g95 is a free, open source Fortran 95 compiler. Users can
- download the g95 binaries for Cygwin in the following website:
- http://www.g95.org.
-
- 2.3 Using Compilers Not Supported
-
- The compilers in 2.1 and 2.2 are supported and tested by HDF
+ The compilers in 2.1 are supported and tested by HDF
group. Any other compilers may still work but they are not
guaranteed by HDF group.
- If users want to use other compilers except those in 2.1 and 2.2,
+ If users want to use other compilers except those in 2.1,
try to set the following variables to override the default
choices.
@@ -83,28 +76,28 @@ Install HDF5 on Cygwin
The HDF5 source code is distributed in a variety of formats which
can be unpacked with the following commands, each of which creates
- an `hdf5-1.8.3' directory.
+ an `hdf5-1.8.5' directory.
2.1 Non-compressed tar archive (*.tar)
- $ tar xf hdf5-1.8.3.tar
+ $ tar xf hdf5-1.8.5.tar
2.2 Gzip'd tar archive (*.tar.gz)
- $ gunzip < hdf5-1.8.3.tar.gz | tar xf -
+ $ gunzip < hdf5-1.8.5.tar.gz | tar xf -
2.3 Bzip'd tar archive (*.tar.bz2)
- $ bunzip2 < hdf5-1.8.3.tar.bz2 | tar xf -
+ $ bunzip2 < hdf5-1.8.5.tar.bz2 | tar xf -
2. Setup Environment
In Cygwin, most compilers and setting are automatically detected during
the configure script. However, if you are building Fortran we recommend
that you explicitly set the "FC" variable in your environment to use the
- g95 Fortran compiler. For example, issue the command:
+ gfortran compiler. For example, issue the command:
- $ export FC=g95
+ $ export FC=gfortran
4. Configuring