summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2010-05-12 18:51:33 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2010-05-12 18:51:33 (GMT)
commit84103cef854a758a8d5dcd270ba36e2495ed3282 (patch)
treef11548eec782a94edda60d2f78edb7f320d8b4c2 /release_docs
parent08ce72aebd7b8957a11c365f95b4bbded708e91f (diff)
downloadhdf5-84103cef854a758a8d5dcd270ba36e2495ed3282.zip
hdf5-84103cef854a758a8d5dcd270ba36e2495ed3282.tar.gz
hdf5-84103cef854a758a8d5dcd270ba36e2495ed3282.tar.bz2
[svn-r18773] Add files to support building library with CMake
Tested: Local linux
Diffstat (limited to 'release_docs')
-rwxr-xr-xrelease_docs/CMake_Windows.TXT95
-rw-r--r--release_docs/INSTALL_Windows.txt158
-rwxr-xr-xrelease_docs/INSTALL_Windows_From_Command_Line.txt28
-rwxr-xr-xrelease_docs/INSTALL_Windows_Short_VS2005.TXT182
-rwxr-xr-xrelease_docs/INSTALL_Windows_Short_VS2008.TXT192
5 files changed, 390 insertions, 265 deletions
diff --git a/release_docs/CMake_Windows.TXT b/release_docs/CMake_Windows.TXT
new file mode 100755
index 0000000..c6ec38e
--- /dev/null
+++ b/release_docs/CMake_Windows.TXT
@@ -0,0 +1,95 @@
+************************************************************************
+* Build and Install HDF5 C/C++ Library with CMake on Windows *
+************************************************************************
+
+Notes: This short instruction is written for users who want to quickly build
+ HDF5 library and tools from the HDF5 source code package using the CMake
+ tools on Windows with the Visual Studio product.
+
+ For detailed HDF5 build and install information, or if you have trouble
+ following any steps in the instructions, please refer to
+ INSTALL_Windows.txt for further information.
+
+ For users who would like to build and test HDF5 package from the
+ command line, please refer to INSTALL_Windows_From_Command_Line.txt.
+
+ Notes:
+
+ 1. CMake is being introduced in this release as early-access. While we
+ have attempted to provide error-free files, please understand that
+ this development with CMake has just began.
+
+ 2. Testing of some tools have issues.
+ The following are failing sometimes on windows
+ hl_test_ds
+
+
+========================================================================
+ Preconditions
+========================================================================
+
+ 1. We suggest you obtain the latest CMake for windows from the Kitware
+ web site. The HDF5 1.8.x product requires CMake version 2.8.
+
+ If you plan to use Zlib or Szip, download the packages and install them
+ in a central location. For example, create a folder extlibs and install
+ the packages there. You should also read Section V in INSTALL_Windows.txt.
+
+========================================================================
+ Building HDF5 C/C++ Libraries with CMake
+========================================================================
+
+ 1. Run CMake
+
+ The CMake executable is name "cmake-gui.exe" and should be available in
+ your Start menu. Specify the source and build directories. It is
+ recommemded that you choose a build directory different then the source
+ directory (for example, if the source is at c:\MyHDFstuff\hdf5, then
+ use c:\MyHDFstuff\hdf5\build or c:\MyHDFstuff\build\hdf5).
+
+ 2. Configure the cache settings
+
+ Click the Configure button. If this is the first time you are
+ running cmake-gui in this directory, you will be prompted for the
+ generator you wish to use (for example, Visual Studio 9 2008). CMake
+ will read in the CMakeLists.txt files from the source directory and
+ display options for the HDF5 project. After the first configure you
+ can adjust the cache settings and/or specify locations of other programs.
+ Any conflicts or new values will be highlighted by the configure
+ process in red. Once you are happy with all the settings, click the
+ Generate button to produce the appropriate build files (if you are using
+ a Visual Studio generator, solution and project files will be created).
+
+
+ 3. Build HDF5
+
+ You can build HDF5 using either the Visual Studio Environment or the command line.
+
+ 3.1 If you wish to use the Visual Studio environment, open the solution file
+ in your build directory.
+
+ 3.2 To build from the command line, navigate to your build directory and
+ execute the following;
+
+ cmake --build . --config {Debug | Release}
+
+
+ 4. Test HDF5.
+
+ To test the build, navigate to your build directory and execute;
+
+ ctest .
+
+ 5. The files that support building HDF5 with CMake are all the files in the Resources
+ folder, the CMakeLists.txt files in each source folder, and two additional files,
+ ConfigureChecks.cmake and CTestConfig.cmake. The CTestConfig.cmake is specific to
+ the internal testing performed by The HDF Group. It should be altered for the users
+ installation and needs.
+
+ 6. More information about using CMake can be found at the KitWare site, www.cmake.org.
+
+
+************************************************************************
+
+Need further assistance, send email to help@hdfgroup.org
+
diff --git a/release_docs/INSTALL_Windows.txt b/release_docs/INSTALL_Windows.txt
index 5b03ef4..f4a1788 100644
--- a/release_docs/INSTALL_Windows.txt
+++ b/release_docs/INSTALL_Windows.txt
@@ -35,12 +35,11 @@ Contents:
Preconditions:
1. Installed Microsoft Visual Studio. This document is written for Visual
- Studio 2005, although we also support Visual Studio 2008 as well. Most
- of the instructions are the same. We no longer support building HDF5
- using Microsoft Visual Studio .NET 2003.
+ Studio 2008. We no longer support building HDF5 using Microsoft Visual
+ Studio .NET 2003 or 2005.
- 2. (Optional) Installed Intel Compiler 9.1 or 10.1 if you want to build HDF5
- Fortran libraries.
+ 2. (Optional) Installed Intel Compiler 10.1 or 11.1 if you want to build HDF5
+ Fortran libraries. We no longer support Intel Fortran Compiler 9.1.
3. Install Winzip or 7-zip for extracting source tarball.
@@ -62,29 +61,35 @@ Preconditions:
Click the "Miscellaneous" tab and uncheck "TAR file smart CR/LF
conversion" option, then click OK.
- 4. Set up a directory structure to unpack the library. For example:
+ 4. CMake is available for this release on a experimental basis. CMake 2.8.1
+ can be downloaded from the KitWare website at http://www.kitware.com.
+
+ Note: We have attempted to mirror our Autoconf configuration files for
+ maintainence reasons. We are still working out the problems with
+ some issues like fortran shared libraries and tools testing. We
+ will maintain the current VS2008 project files for the 1.8 product.
+
+ 5. Set up a directory structure to unpack the library. For example:
c:\ (any drive)
MyHDFstuff\ (any folder name)
- 5. Download the hdf5-1.8.4 source code package and use 7zip or WinZip to
+ 6. Download the hdf5-1.8.x source code package and use 7zip or WinZip to
extract the HDF5 package into c:\MyHDFstuff. This creates a directory
- called 'hdf5-1.8.4' under MyHDFstuff which contains several files and
- directories. Rename "hdf5-1.8.4" to "hdf5".
+ called 'hdf5-1.8.x' under MyHDFstuff which contains several files and
+ directories. Rename "hdf5-1.8.x" to "hdf5".
- 6. HDF5 provide options to do in-memory compression within HDF5 library.
+ 7. HDF5 provide options to do in-memory compression within HDF5 library.
Currently, two external compression libraries Zlib and Szip can be used
with HDF5.
- 6.1 HDF5 uses Zlib version 1.2.3 for compression and Zlib is NOT
- distributed with HDF5 library in 1.8.4 release. To use Zlib library,
+ 7.1 HDF5 uses Zlib version 1.2.5 for compression and Zlib is NOT
+ distributed with HDF5 library in 1.8.x release. To use Zlib library,
you have to install your own Zlib DLL library or go to
- ftp://ftp.hdfgroup.org/lib-external/zlib/1.2/bin/windows
- to download the Zlib library.
-
+ http://www.zlib.net/ to download the Zlib library.
- 6.2 HDF5 uses Szip version 2.1 for compression and Szip compression
- software is provided with HDF5 products in 1.8.4 release. To use
+ 7.2 HDF5 uses Szip version 2.1 for compression and Szip compression
+ software is provided with HDF5 products in 1.8.x release. To use
Szip 2.1 library, you can download Szip source codes and binaries from
ftp://ftp.hdfgroup.org/lib-external/szip/2.1/bin/windows
@@ -94,7 +99,7 @@ Preconditions:
Szip compression feature inside HDF5 is optional.
- 7. Define the following environment variables:
+ 8. Define the following environment variables:
HDF5_EXT_ZLIB
HDF5_EXT_SZIP
@@ -125,11 +130,10 @@ Preconditions:
a. You will have to close and reopen running programs for the new
environment variable settings to take effect.
- b. c:\zlib123\zlib1.dll and c:\szip\dll\szlibdll.dll should be copied
- into the location that the application can find, one suggestion is
- to use the c:\WINDOWS\system.
+ b. c:\zlib\zlib1.dll and c:\szip\dll\szlibdll.dll should be copied
+ into a location that the application can find.
- 6. Set up path for external libraries and headers
+ 9. Set up path for external libraries and headers
Skip this part if you don't want to use ANY compression features provided
by HDF5. Please do read Section V.
@@ -140,21 +144,21 @@ Preconditions:
Invoke Microsoft Visual Studio and go to "Tools" and select "Options",
find "Projects", and then "VC++ Directories".
- 6.1 If you are building on 64-bit Windows, find the "Platform" dropdown
+ 9.1 If you are building on 64-bit Windows, find the "Platform" dropdown
and select "x64".
- 6.2 Find the box "Show directories for", choose "Include files", if you
+ 9.2 Find the box "Show directories for", choose "Include files", if you
can not find your Zlib and Szip header path (for example,
- c:\zlib123\include, c:\szip\include) from the directory list, add the
- header path (c:\zlib123\include, c:\szip\include) to the included
+ c:\zlib\include, c:\szip\include) from the directory list, add the
+ header path (c:\zlib\include, c:\szip\include) to the included
directories.
- 6.3 Find the box "Show directories for", choose "Library files". If you
+ 9.3 Find the box "Show directories for", choose "Library files". If you
cannot find your Zlib and Szip library path (for example,
- c:\zlib123\dll, c:\szip\dll) from the directory list, add the library
- path (c:\zlib123\dll, c:\szip\dll) to the library directories.
+ c:\zlib\dll, c:\szip\dll) from the directory list, add the library
+ path (c:\zlib\dll, c:\szip\dll) to the library directories.
- 6.4 If building Fortran libraries, you will also need to setup the path
+ 9.4 If building Fortran libraries, you will also need to setup the path
for the Intel Fortran compiler. Please see Section VI.
Notes:
@@ -165,28 +169,31 @@ Notes:
2. Visual Studio 6.0 is no longer supported in HDF5 1.8 or later releases.
Visual Studio .NET is no longer support in HDF5 1.8.4 or later releases.
+ Visual Studio 2005 is no longer support in HDF5 1.8.5 or later releases.
+ Intel Fortran 9.1 is no longer support in HDF5 1.8.5 or later releases.
3. For users who want to quickly build HDF5 library or do not want to know
HDF5 building and installation details, please read the
- INSTALL_Windows_Short_***.txt relating to your compiler.
+ INSTALL_Windows_Short_2008.txt relating to your compiler.
4. For users who would like to build and test HDF5 package from the command
- line, please read INSATLL_Windows_From_Command_Line.txt.
+ line, please read INSTALL_Windows_From_Command_Line.txt.
- 5. HDF4-related tools are not built and released with HDF5 library packages
+ 5. For users who would like to build and test HDF5 package using CMake,
+ please read INSTALL_Windows_Using_CMake.txt.
+
+ 6. HDF4-related tools are not built and released with HDF5 library packages
any more. To obtain HDF4 related tools, please check
http://hdfgroup.org/h4toh5/ and ftp://ftp.hdfgroup.org/HDF5/h4toh5
- 6. For Fortran users, Intel fortran Compiler 9.1 and 10.1 is currently
- supported-- please see Section VI. Intel Compiler verion 7.x and 8.x are
- no longer supported.
+ 7. For Fortran users, Intel Fortran Compiler 10.1 is currently supported
+ -- please see Section VI. Intel Compiler verion 7.x, 8.x and 9.x are
+ no longer supported. Intel Compiler 11.1 can be used but the project files
+ must be upgraded within the Visual Studio IDE.
- 7. For users who would like to build Muti-threaded version of HDF5 library,
+ 8. Visual Studio now only builds muti-threaded versions of HDF5 library,
please read Section VII.
- 8. To build HDF5 in Visual Studio 2008, be sure to read the instructions in
- Section XI.
-
========================================================================
Section I: What do we build and install?
@@ -307,7 +314,7 @@ STEP 1: Building HDF5 Libraries and Tools
Select "Build" -> "Build Solution" or "Rebuild Solution" to build release
version of project "all".
- Both debug and release versions must be built for testing.
+ Release version must be built for testing, debug version is optional.
Warning messages can be ignored.
@@ -460,6 +467,9 @@ We provide 2 options for users to test HDF5 libraries and tools.
To use this option, HDF5 C++ and Fortran
libraries must have been built.
+ nodebug -- can be added to any of the above to
+ not test debug versions
+
Invoke a command prompt window and run hdf5check with appropriate option.
Users are encouraged to pipe the test output into a file. You should find
no "*FAILED*" marks.
@@ -797,7 +807,7 @@ To build and test HDF5 High Level C examples:
Solution" option.
Then open the solution
- c:\MyHDFstuff\hdf5\windows\hl\examples\allhlcexamples\allhlcexamples.dsw
+ c:\MyHDFstuff\hdf5\windows\hl\examples\allhlcexamples\allhlcexamples.sln
2. Select "Build", and "Configuration Manager".
@@ -895,7 +905,7 @@ project, you may choose one of the following two methods.
HDF5, Zlib, and Szip header files directories. For example:
c:\MyHDFstuff\hdf5\hdf5lib\release\include
- c:\zlib123\include
+ c:\zlib\include
c:\szip\include
Then click OK.
@@ -917,7 +927,7 @@ project, you may choose one of the following two methods.
example,
c:\MyHDFstuff\hdf5\hdf5lib\release\include
- c:\zlib123\include
+ c:\zlib\include
c:\szip\include
@@ -942,7 +952,7 @@ project, you may choose one of the following two methods.
HDF5, Zlib, and Szip library files directories. For example:
c:\MyHDFstuff\hdf5\hdf5lib\release\lib
- c:\zlib123\dll
+ c:\zlib\dll
c:\szip\dll
Note: To link with HDF5 DLLs rathern that static libraries, simply
@@ -961,7 +971,7 @@ project, you may choose one of the following two methods.
example,
c:\MyHDFstuff\hdf5\hdf5lib\release\lib
- c:\zlib123\dll
+ c:\zlib\dll
c:\szip\dll
Note: To link with HDF5 DLLs rathern that static libraries, simply
@@ -1112,14 +1122,14 @@ Warning: When you modify the H5pubconf.h file as described below, DO NOT just
Section VI: How to build HDF5 with Fortran Support
========================================================================
-Notes: 1. For Intel Compiler users, Intel fortran Compiler 9.1 and 10.1 are
- currently supported-- please see below. Intel Compiler verion 7.x and
- 8.x are no longer supported.
+Notes: 1. For Intel Compiler users, Intel fortran Compiler10.1 is
+ currently supported. Intel Compiler verion 7.x, 8.x and
+ 9.x are no longer supported. Intel Compiler 11.1 can be used, however
+ the fortran project files must be upgraded from within the IDE.
2. The Compaq Fortran Compiler is no longer supported for HDF5 1.8.
- 3. Intel Fortran 9.1 works only under Visual Studio 2005 environments.
- Visual Studio 2008 is supported only with Intel Fortran 10.1.
+ 3. Visual Studio 2008 is supported only with Intel Fortran 10.1 and 11.1.
4. Parallel builds should be disabled. To do so: Go to Tools >
Options > Projects and Solutions > Build and Run. Set "Maximum Number
@@ -1143,25 +1153,25 @@ Notes: 1. For Intel Compiler users, Intel fortran Compiler 9.1 and 10.1 are
You have to read this part even if you want to use only Zlib
or Szip. You also need to read Section V.
- 1) Invoke Microsoft Visual Studio 2005 or 2008.
+ 1) Invoke Microsoft Visual Studio 2008.
2) From the main menu, Go to Tools > Options > Intel(R) Fortran. In the
right panel, make sure your "Selected Compiler" is Intel Fortran.
3) Select the right-most box for "Libraries", and add Zlib and Szip
- library paths (c:\zlib123\dll, c:\szip\dll for example).
+ library paths (c:\zlib\dll, c:\szip\dll for example).
4) Select right-most box for "Includes", and add Zlib and Szip header
- paths (c:\zlib123\include c:\szip\include, for example).
+ paths (c:\zlib\include c:\szip\include, for example).
5) Then click "OK".
-1. Build with Intel Fortran Compiler 9.1 or 10.1 under Visual Studio 2005 or 2008
+1. Build with Intel Fortran Compiler 10.1 under Visual Studio 2008
Note: This step will build HDF5 Static and DLL C and C++ Library using
Visual Studio compiler as well as HDF5 Static and High Level
- Fortran Library using Intel Fortran 9.1 or 10.1 Compiler.
+ Fortran Library using Intel Fortran 10.1 Compiler.
1.1 Open all_fortran.sln
@@ -1385,10 +1395,10 @@ Notes: 1. For Intel Compiler users, Intel fortran Compiler 9.1 and 10.1 are
Section VII : How to build Multi-threaded version of HDF5 library
========================================================================
-Notes: In Visual Studio 2005, the Single-threaded runtime libraries have been
+Notes: In Visual Studio 2008, the Single-threaded runtime libraries have been
depreciated, and Multi-threaded is built by default. Therefore, no extra
work needs to be done to build Multi-threaded libraries in Visual Studio
- 2005.
+ 2008.
========================================================================
@@ -1571,7 +1581,7 @@ Notes: In Visual Studio 2005, the Single-threaded runtime libraries have been
Section IX: How to build HDF5 for 64-bit Windows
========================================================================
-HDF5 can be built for 64-bit Windows in Visual Studio 2005 or 2008.
+HDF5 can be built for 64-bit Windows in Visual Studio 2008.
Notes:
@@ -1582,9 +1592,9 @@ Notes:
Prerequisites:
- 1. A 64-bit Windows machine. Either AMD64 and Itanium is supported.
+ 1. A 64-bit Windows machine.
- 2. Microsoft Visual Studio 2005 or 2008 installed with x64 Extensions.
+ 2. Microsoft Visual Studio 2008 installed with x64 Extensions.
Building:
@@ -1627,9 +1637,8 @@ Building on Windows Vista is very similar to building on Windows XP, with
some minor changes. Therefore, follow the build instructions above, with the
following considerations:
- 1. Only Visual Studio 2005 and 2008 is currently supported on Windows Vista.
- This is because Microsoft has ended their support for .NET.
-
+ 1. Only Visual Studio 2008 is currently supported on Windows Vista.
+
2. Elevated security permissions are required to test the HDF5 libraries.
This is because DLLs are installed in the system directory. To enable
elevated security:
@@ -1646,16 +1655,23 @@ following considerations:
========================================================================
Section XI: How to build HDF5 using Visual Studio 2008
========================================================================
-Building with Visual Studio 2008 is very similar to building with Visual Studio
-2005, with some minor changes. Therefore, follow the build instructions above,
+Building with Visual Studio 2008 is the default with HDF5 1.8.5 and above.
+
+========================================================================
+ Section XII: How to build HDF5 using Visual Studio 2010
+========================================================================
+Building with Visual Studio 2010 is very similar to building with Visual Studio
+2008, with some minor changes. Therefore, follow the build instructions above,
with the following considerations:
- 1. Visual Studio 2008 uses a new format for project files, but Visual Studio
- 2005 project files can be easily converted. The HDF5 project files
+ 1. Visual Studio 2010 uses a new format for project files, but Visual Studio
+ 2008 project files can be easily converted. The HDF5 project files
will need to be converted on first use. To do so:
- 1.1. Open the HDF5 Visual Studio 2005 solution file as in Section II
- (either all.sln or all_fortran.sln if building Fortran.)
+ 1.1. Open the HDF5 Visual Studio 2008 solution file as in Section II
+ (either all.sln.)
+
+ 1.1. Intel Fortran 11.1 currently does not integrate with Visual Studio 2010.
1.2. You will be prompted with an automatic conversion wizard. Click
through, accepting the default values. You may choose to create
@@ -1670,7 +1686,7 @@ with the following considerations:
========================================================================
- Section XII: Backwards Compatibility with HDF5 1.6
+ Section XIII: Backwards Compatibility with HDF5 1.6
========================================================================
Several basic HDF5 functions have changed over the years as requirements on
diff --git a/release_docs/INSTALL_Windows_From_Command_Line.txt b/release_docs/INSTALL_Windows_From_Command_Line.txt
index ede2133..19f7be5 100755
--- a/release_docs/INSTALL_Windows_From_Command_Line.txt
+++ b/release_docs/INSTALL_Windows_From_Command_Line.txt
@@ -5,12 +5,15 @@
Note: This instruction is written for users who would like to build HDF5
libraries and tools from the HDF5 source code package on command
line. We no longer support building HDF5 using Microsoft Visual
- Studio .NET 2003.
+ Studio .NET 2003 or Visual Studio VS2005 or Intel Fortran 91.
Currently, we support:
1. Building and testing HDF5 C/C++/Fortran libraries on command line with
- Microsoft Visual Studio 2005 or 2008 for 32- or 64-bit Windows.
+ Microsoft Visual Studio 2008 for 32- or 64-bit Windows.
+
+ 2. Building and testing HDF5 C/C++/Fortran libraries and utilities using
+ CMake tools. Refer to CMAKE_Windows.txt file for detailed information.
For all other Windows development tools, HDF5 should be built in
the development environment. Please refer to INSTALL_Windows.txt
@@ -37,14 +40,12 @@ notes in INSTALL_Windows.txt before starting below procedures.
Studio. These are generally setup when Visual Studio is installed, but you
can verify by running the command:
- echo %vs80comntools%
+ echo %vs90comntools%
This should output a path similar to:
- C:\Program Files\Microsoft Visual Studio 8\Common7\Tools\
+ C:\Program Files\Microsoft Visual Studio 9\Common7\Tools\
- If you are using Visual Studio 2008, use "vs90comntools"
-
1.2 Run batch file copy_hdf.bat.
Go to c:\MyHDFstuff\hdf5\windows and run copy_hdf.bat.
@@ -81,12 +82,10 @@ notes in INSTALL_Windows.txt before starting below procedures.
from command line.
hdf5bt file takes the following options:
- /vs8 Build HDF5 using Visual Studio 2005
/vs9 Build HDF5 using Visual Studio 2008
- Note: Default is Visual Studio 2005
/fort Build and test HDF5 with Fortran libraries
- /ivf91 Build HDF5 Fortran using Intel Visual Fortran 9.1
/ivf101 Build HDF5 Fortran using Intel Visual Fortran 10.1
+ /ivf111 Build HDF5 Fortran using Intel Visual Fortran 11.1
/useenv Build HDF5 using compiler settings defined
in the environment, rather than the IDE.
/? Help information
@@ -110,13 +109,13 @@ notes in INSTALL_Windows.txt before starting below procedures.
directory is provided for users to build HDF5 library and
tools from command line.
- hdf55build takes the following options:
- /vs8 Build HDF5 using Visual Studio 2005
+ hdf5build takes the following options:
/vs9 Build HDF5 using Visual Studio 2008
- Note: Default is Visual Studio 2005
/fort Build HDF5 with Fortran libraries
- /ivf91 Build HDF5 Fortran using Intel Visual Fortran 9.1
/ivf101 Build HDF5 Fortran using Intel Visual Fortran 10.1
+ /ivf111 Build HDF5 Fortran using Intel Visual Fortran 11.1
+ /nodebug Build HDF5 release versions only
+ Note: Default is to build debug and release versions
/useenv Build HDF5 using compiler settings defined
in the environment, rather than the IDE.
/? Help information
@@ -148,6 +147,9 @@ notes in INSTALL_Windows.txt before starting below procedures.
tools. To use this option, HDF5
Fortran libraries must have been built.
+ nodebug option can be added to any of the above options to only
+ test the release versions.
+
Invoke a command prompt window and run hdf5check with appropriate
option. Users are encouraged to pipe the test output into a file.
You should find no "*FAILED*" marks.
diff --git a/release_docs/INSTALL_Windows_Short_VS2005.TXT b/release_docs/INSTALL_Windows_Short_VS2005.TXT
index 48e473d..9ed15b4 100755
--- a/release_docs/INSTALL_Windows_Short_VS2005.TXT
+++ b/release_docs/INSTALL_Windows_Short_VS2005.TXT
@@ -3,187 +3,7 @@
* with Windows XP (Short Version) *
************************************************************************
-Notes: This short instruction is written for users who want to quickly build
- HDF5 library and tools from the HDF5 source code package with Microsoft
- Visual Studio 2005 but do not want to know HDF5 building and installation
- details on Windows XP.
-
- For detailed HDF5 build and install information, or if you have trouble
- following any steps in the instructions, please refer to
- INSTALL_Windows.txt for further information.
-
- For users who would like to build and test HDF5 package from the
- command line, please refer to INSATLL_Windows_From_Command_Line.txt.
-
- Notes:
-
- 1. HDF5 1.8 can also be built using Visual Studio 2005 on Windows
- Vista. For details, please see Section X of INSTALL_Windows.txt.
-
- 2. 64-bit builds are also supported in Visual STudio 2005. For details
- please see Section IX of INSTALL_Windows.txt.
-
- 3. Fortran libraries can be built with Visual Studio 2005 and Intel
- Fortran 9.1. For details, see Section VI of INSTALL_Windows.txt.
-
-WARNINGS:
-
-Please read CAREFULLY about HDF5 build and install preconditions and
-notes in INSTALL_Windows.txt before starting below procedures.
-
-
-========================================================================
- Preconditions
-========================================================================
-
- 1. Set up path for external libraries and headers
-
- Skip this part if you don't want to use ANY compression features provided
- by HDF5. Please do read Section V in INSTALL_Windows.txt.
-
- You have to read this part even if you want to only use Zlib or Szip. You
- also need to read Section V in INSTALL_Windows.txt.
-
- Invoke Microsoft Visual Studio and go to "Tools" and select "Options". In
- the left pane of "Option" window poped up, choose and expand "Projects",
- Click on "VC++ Directories". In the right pane, Find the box "Show
- directories for", choose "Include files", if you can not find your Zlib
- and Szip header path (for example, c:\zlib123\include, c:\szip\include)
- from the directory list, add the header path (c:\zlib123\include,
- c:\szip\include) to the included directories.
-
- Find the box "Show directories for", choose "Library files", If you cannot
- find your Zlib and Szip library path (for example, c:\zlib123\dll,
- c:\szip\dll) from the directory list, add the library path
- (c:\zlib123\dll, c:\szip\dll) to the library directories.
-
-========================================================================
- Building HDF5 C/C++ Libraries with Visual Studio 2005
-========================================================================
-
- 1. Run batch file copy_hdf.bat
-
- Go to c:\MyHDFstuff\hdf5\windows and run copy_hdf.bat. This process will
- copy all the necessary batch files, windows specific source codes and
- text files saved under c:\MyHDFstuff\hdf5\windows directory to the
- corresponding directories under hdf5.
-
- 2. Invoke Microsoft Visual Studio compiler
-
- Invoke Microsoft Visual Studio. From the main menu, go to "File" and
- select the "Open Solution" option. Then open the
- c:\MyHDFstuff\hdf5\windows\proj\all\all.sln solution if you are building
- without Fortran libraries, or
- c:\MyHDFstuff\hdf5\windows\proj\all_fortran\all_fortran.sln if you would
- like to use Fortran.
-
- You should find Windows project files listed as "all", "big", etc. on the
- left.
-
-
- 3. (Optional) Disable HDF5 C++ and High level C++
-
- In HDF5 1.8, C++ and HL C++ libraries are built by default. To opt-out,
- you must explicitly disable them.
-
- 3.1 Skip this step if you do want to build HDF5 High-Level C++ libraries
-
- Go to "Project" and select "Project Dependencies". Select "all", and
- disable all of the following projects:
-
- hdf5_hl_cpp
- hdf5_hl_cppdll
- hl_test_table_cpp
- hl_test_table_cppdll
-
- 3.2 Skip this step if you do want to build HDF5 High-Level libraries
-
- Go to "Project" and select "Project Dependencies". Select "all", and
- disable all of the project files listed in the previous step, as well
- as the following projects:
-
- hdf5_hl
- hdf5_hldll
- hl_test_image
- hl_test_imagedll
- hl_test_lite
- hl_test_litedll
- hl_test_table
- hl_test_tabledll
- hl_test_ds
- hl_test_dsdll
- hl_test_packet
- hl_test_packetdll
-
- Click on "OK", From the main menu, choose "Build"-> "Build" or
- "Rebuild ALL" to build both release and debug version of HDF5
- Libraries.
-
-
- 4. Select "Build", then Select "Configuration Manager".
-
- 4.1 To build debug static libraries, debug multithreaded DLLs, and tests:
-
- In "Active Solution Configuration", select "Debug". Select "Close".
- Select "Build" -> "Build Solution" or "Rebuild Solution" to build debug
- version of project "all".
-
- 4.2 To build release static libraries, multithreaded DLLs and tests:
-
- In "Active Solution Configuration", select "Release". Select "Close".
- Select "Build" -> "Build Solution" or "Rebuild Solution" to build release
- version of project "all".
-
- Both debug and release versions must be built.
-
- Warning messages can be ignored.
-
-========================================================================
- Testing HDF5 C/C++ Libraries
-========================================================================
-
-HDF5 libraries and tools should be tested to make sure that they were
-built correctly. c:\MyHDFstuff\hdf5\hdf5check.bat was provided to test
-HDF5 libraries and tools.
-
-hdf5check.bat has four options:
-
- hdf5check test HDF5 C library and tools only
-
- hdf5check enablecpp test HDF5 C/C++ libraries and tools
-
- hdf5check enablefortran test HDF5 C/Fortran libraries and tools
-
- hdf5check enableall test HDF5 C/C++/Fortran libraries and tools
-
-
-Notes: Users who only build HDF5 C/C++ libraries ONLY have the first
- two options.
-
-Invoke a command prompt window and run hdf5check with appropriate option.
-Users are encouraged to pipe the test output into a file. You should find
-no "*FAILED*" marks.
-
-If you want to test HDF5 libraries and tools one by one, please refer to
-Section II, step 2 in INSTALL_Windows.txt.
-
-
-========================================================================
- Installing HDF5 C/C++ Libraries
-========================================================================
-
-Run the batch file c:\MyHDFstuff\hdf5\installhdf5lib.bat to install
-all HDF5 libraries and tools into c:\MyHDFstuff\hdf5\hdf5lib directory.
-
-========================================================================
- Building HDF5 Examples and Applications
-========================================================================
-
-Building HDF5 Examples is Optional. Please read Section II, step 4 and
-the following part in INSTALL_Windows.txt for detailed information.
-
-
-
+Notes: We no longer support building HDF5 using Microsoft Visual Studio 2005.
************************************************************************
Need further assistance, send email to help@hdfgroup.org
diff --git a/release_docs/INSTALL_Windows_Short_VS2008.TXT b/release_docs/INSTALL_Windows_Short_VS2008.TXT
new file mode 100755
index 0000000..8ff8866
--- /dev/null
+++ b/release_docs/INSTALL_Windows_Short_VS2008.TXT
@@ -0,0 +1,192 @@
+************************************************************************
+* Build and Install HDF5 C/C++ Library with Visual Studio 2008 *
+* with Windows XP (Short Version) *
+************************************************************************
+
+Notes: This short instruction is written for users who want to quickly build
+ HDF5 library and tools from the HDF5 source code package with Microsoft
+ Visual Studio 2008 but do not want to know HDF5 building and installation
+ details on Windows XP.
+
+ For detailed HDF5 build and install information, or if you have trouble
+ following any steps in the instructions, please refer to
+ INSTALL_Windows.txt for further information.
+
+ For users who would like to build and test HDF5 package from the
+ command line, please refer to INSTALL_Windows_From_Command_Line.txt.
+
+ Notes:
+
+ 1. HDF5 1.8 can also be built using Visual Studio 2008 on Windows
+ Vista. For details, please see Section X of INSTALL_Windows.txt.
+
+ 2. 64-bit builds are also supported in Visual Studio 2008. For details
+ please see Section IX of INSTALL_Windows.txt.
+
+ 3. Fortran libraries can be built with Visual Studio 2008 and Intel
+ Fortran 10.1. For details, see Section VI of INSTALL_Windows.txt.
+
+WARNINGS:
+
+Please read CAREFULLY about HDF5 build and install preconditions and
+notes in INSTALL_Windows.txt before starting below procedures.
+
+
+========================================================================
+ Preconditions
+========================================================================
+
+ 1. Set up path for external libraries and headers
+
+ Skip this part if you don't want to use ANY compression features provided
+ by HDF5. Please do read Section V in INSTALL_Windows.txt.
+
+ You have to read this part even if you want to only use Zlib or Szip. You
+ also need to read Section V in INSTALL_Windows.txt.
+
+ Invoke Microsoft Visual Studio and go to "Tools" and select "Options". In
+ the left pane of "Option" window poped up, choose and expand "Projects",
+ Click on "VC++ Directories". In the right pane, Find the box "Show
+ directories for", choose "Include files", if you can not find your Zlib
+ and Szip header path (for example, c:\zlib125\include, c:\szip\include)
+ from the directory list, add the header path (c:\zlib125\include,
+ c:\szip\include) to the included directories.
+
+ Find the box "Show directories for", choose "Library files", If you cannot
+ find your Zlib and Szip library path (for example, c:\zlib125\dll,
+ c:\szip\dll) from the directory list, add the library path
+ (c:\zlib125\dll, c:\szip\dll) to the library directories.
+
+========================================================================
+ Building HDF5 C/C++ Libraries with Visual Studio 2005
+========================================================================
+
+ 1. Run batch file copy_hdf.bat
+
+ Go to c:\MyHDFstuff\hdf5\windows and run copy_hdf.bat. This process will
+ copy all the necessary batch files, windows specific source codes and
+ text files saved under c:\MyHDFstuff\hdf5\windows directory to the
+ corresponding directories under hdf5.
+
+ 2. Invoke Microsoft Visual Studio compiler
+
+ Invoke Microsoft Visual Studio. From the main menu, go to "File" and
+ select the "Open Solution" option. Then open the
+ c:\MyHDFstuff\hdf5\windows\proj\all\all.sln solution if you are building
+ without Fortran libraries, or
+ c:\MyHDFstuff\hdf5\windows\proj\all_fortran\all_fortran.sln if you would
+ like to use Fortran.
+
+ You should find Windows project files listed as "all", "big", etc. on the
+ left.
+
+
+ 3. (Optional) Disable HDF5 C++ and High level C++
+
+ In HDF5 1.8, C++ and HL C++ libraries are built by default. To opt-out,
+ you must explicitly disable them.
+
+ 3.1 Skip this step if you do want to build HDF5 High-Level C++ libraries
+
+ Go to "Project" and select "Project Dependencies". Select "all", and
+ disable all of the following projects:
+
+ hdf5_hl_cpp
+ hdf5_hl_cppdll
+ hl_test_table_cpp
+ hl_test_table_cppdll
+
+ 3.2 Skip this step if you do want to build HDF5 High-Level libraries
+
+ Go to "Project" and select "Project Dependencies". Select "all", and
+ disable all of the project files listed in the previous step, as well
+ as the following projects:
+
+ hdf5_hl
+ hdf5_hldll
+ hl_test_image
+ hl_test_imagedll
+ hl_test_lite
+ hl_test_litedll
+ hl_test_table
+ hl_test_tabledll
+ hl_test_ds
+ hl_test_dsdll
+ hl_test_packet
+ hl_test_packetdll
+
+ Click on "OK", From the main menu, choose "Build"-> "Build" or
+ "Rebuild ALL" to build both release and debug version of HDF5
+ Libraries.
+
+
+ 4. Select "Build", then Select "Configuration Manager".
+
+ 4.1 To build debug static libraries, debug multithreaded DLLs, and tests:
+
+ In "Active Solution Configuration", select "Debug". Select "Close".
+ Select "Build" -> "Build Solution" or "Rebuild Solution" to build debug
+ version of project "all".
+
+ 4.2 To build release static libraries, multithreaded DLLs and tests:
+
+ In "Active Solution Configuration", select "Release". Select "Close".
+ Select "Build" -> "Build Solution" or "Rebuild Solution" to build release
+ version of project "all".
+
+ Both debug and release versions must be built.
+
+ Warning messages can be ignored.
+
+========================================================================
+ Testing HDF5 C/C++ Libraries
+========================================================================
+
+HDF5 libraries and tools should be tested to make sure that they were
+built correctly. c:\MyHDFstuff\hdf5\hdf5check.bat was provided to test
+HDF5 libraries and tools.
+
+hdf5check.bat has four options:
+
+ hdf5check test HDF5 C library and tools only
+
+ hdf5check enablecpp test HDF5 C/C++ libraries and tools
+
+ hdf5check enablefortran test HDF5 C/Fortran libraries and tools
+
+ hdf5check enableall test HDF5 C/C++/Fortran libraries and tools
+
+ nodebug -- can be added to any of the above to not
+ test debug versions
+
+Notes: Users who only build HDF5 C/C++ libraries ONLY have the first
+ two options.
+
+Invoke a command prompt window and run hdf5check with appropriate option.
+Users are encouraged to pipe the test output into a file. You should find
+no "*FAILED*" marks.
+
+If you want to test HDF5 libraries and tools one by one, please refer to
+Section II, step 2 in INSTALL_Windows.txt.
+
+
+========================================================================
+ Installing HDF5 C/C++ Libraries
+========================================================================
+
+Run the batch file c:\MyHDFstuff\hdf5\installhdf5lib.bat to install
+all HDF5 libraries and tools into c:\MyHDFstuff\hdf5\hdf5lib directory.
+
+========================================================================
+ Building HDF5 Examples and Applications
+========================================================================
+
+Building HDF5 Examples is Optional. Please read Section II, step 4 and
+the following part in INSTALL_Windows.txt for detailed information.
+
+
+
+************************************************************************
+
+Need further assistance, send email to help@hdfgroup.org
+