diff options
author | Robb Matzke <matzke@llnl.gov> | 1999-03-01 19:44:32 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1999-03-01 19:44:32 (GMT) |
commit | b3ddd2cc5428b052ca26b36634b64be21032a330 (patch) | |
tree | d29670f49933b5259ca1cfd2a959f336ccb4bf5d /INSTALL | |
parent | 90d07791d37f965638b96eb2b4ad48b60708a9dc (diff) | |
download | hdf5-b3ddd2cc5428b052ca26b36634b64be21032a330.zip hdf5-b3ddd2cc5428b052ca26b36634b64be21032a330.tar.gz hdf5-b3ddd2cc5428b052ca26b36634b64be21032a330.tar.bz2 |
[svn-r1110] Changes since 19990226
----------------------
./INSTALL
Added instructions for using other compilers on Irix platforms.
./configure.in
./configure [REGENERATED]
./src/H5config.h.in [REGENERATED]
./src/H5private.h
The presence of <sys/sysinfo.h> and <sys/proc.h> is only
checked on DEC/Alpha because there are too many problems
including these headers on other systems.
./config/irix6.x
./config/irix64
Removed `-ansi' and added a comment. Converting an ASCII UTC date
and time to a time_t value is not defined by ANSI or Posix but
is available if we don't use `-ansi'. This allows the dataset
modification time messages to be read properly by
H5Gget_objinfo().
./src/H5Tconv.c
Fixed a compiler warning.
./test/dtypes.c
./test/hyperslab.c
./test/istore.c
Fixed compiler warnings in printf() statements.
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -99,6 +99,13 @@ Step 2. Configure. RANLIB Name of the `ranlib' program or `:' if none. MAKE Name of the `make' program (GNU make is preferred) + * The default compiler is `cc -n32' on Irix6.x platforms and `cc -64' on + Irix64 platforms. To use an alternate compiler (such as `cc -o32') + specify the name and compiler selection switch with the CC environment + variable: + + $ CC='cc -o32' ./configure ...... + * This version of HDF5 is normally built with various debugging code enabled. To turn it off add the `--disable-debug' switch to the configure command. Even if debugging support is compiled into the |