diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2006-05-12 21:32:59 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2006-05-12 21:32:59 (GMT) |
commit | 916399d31ed063c0d7e8b7aba864841168a37b93 (patch) | |
tree | 22cc96e85fb638bb864efd1071a9c52234cee14a /vms/make.com | |
parent | cbe0bc01f0b36901ae5b7b0abb5ae1f65a9fef02 (diff) | |
download | hdf5-916399d31ed063c0d7e8b7aba864841168a37b93.zip hdf5-916399d31ed063c0d7e8b7aba864841168a37b93.tar.gz hdf5-916399d31ed063c0d7e8b7aba864841168a37b93.tar.bz2 |
[svn-r12346] Purpose: new feature/maintenance
Description: Added support for Zlib compression on VMS
Solution: Modified command files to add compilation and linking with
the ZLIB library.
Platforms tested: VMS servere with the VAX floating datatype;
will test IEEE option later
Misc. update:
Diffstat (limited to 'vms/make.com')
-rw-r--r-- | vms/make.com | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/vms/make.com b/vms/make.com index ec73370..7b6c215 100644 --- a/vms/make.com +++ b/vms/make.com @@ -34,12 +34,17 @@ $ copy [.tools.h5import]*.com [-.tools.h5import] $ copy [.tools.h5jam]*.com [-.tools.h5jam] $ copy [.tools.lib]make.com [-.tools.lib] $! +$! Define location of ZLIB library. If you do not have it on your system, download +$! source code from http://www.zlib.net/, build and install on your system +$ define zlib_dir sys$sysusers:[pourmale.zlib-1_2_3] +$! $! Set up compilation flags here $! Do not remove define=H5_VMS and standard=strict_ansi qualifiers. $! -$ ccopt == "/float=ieee_float/define=H5_VMS/debug/nooptimize" -$ fcopt == "/float=ieee_float/define=H5_VMS/debug/nooptimize" -$ cxxopt == "/float=ieee_float/define=H5_VMS/debug/nooptimize/standard=strict_ansi" +$ ccopt == "/float=ieee_float/define=H5_VMS/debug/nooptimize/include=zlib_dir" +$ fcopt == "/float=ieee_float/define=H5_VMS/debug/nooptimize/include=zlib_dir" +$ cxxopt == "/float=ieee_float/define=H5_VMS/debug/nooptimize/"+- + "standard=strict_ansii/include=zlib_dir" $! $! $ hdf5top = F$DIRECTORY() |