summaryrefslogtreecommitdiffstats
path: root/config/irix64
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r405] Irix systems do not need to use ranlib command. Set RANLIBAlbert Cheng1998-06-041-0/+1
| | | | to ':' to make it a null action.
* [svn-r349] Set "cc" as the C compiler. The CFLAGS setting works with SGIAlbert Cheng1998-04-161-0/+3
| | | | compilers only.
* [svn-r335] Changes since 19980330Robb Matzke1998-04-031-25/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ---------------------- ./MANIFEST ./src/Makefile.in ./test/Makefile.in Added new files. ./config/linux ./src/H5HL.c ./src/H5HLprivate.h ./src/H5MF.c ./src/H5MFprivate.h Added `-DH5HL_DEBUG -DH5MF_DEBUG' to the debug list. ./html/H5.format.html Updated shared object message information. ./src/H5D.c Datasets can now share data types. ./src/H5F.c Updated a comment that referred to H5ACC_WRITE. ./src/H5HG.c ./src/H5HGprivate.h Moved a few things around. Made debugging better so you can now give a collection address to ./src/debug and it shows some useful stuff. ./src/H5O.c ./src/H5Ocont.c ./src/H5Odtype.c ./src/H5Oefl.c ./src/H5Olayout.c ./src/H5Oname.c ./src/H5Onull.c ./src/H5Oprivate.h ./src/H5Osdspace.c ./src/H5Oshared.c [NEW] ./src/H5Ostab.c Supports shared messages. ./src/H5T.c ./src/H5Tpkg.h ./src/H5Tprivate.h ./src/H5Tpublic.h The H5Tshare() function allows the user to give the library hints about how a data type will be used. ./test/shtype.c Tests the H5Tshare() function. ./test/gheap.c Tests the global heap. ./configure.in ./config/BlankForm [NEW] ./config/alpha-dec ./config/freebsd2.2.1 ./config/hpux10.20 ./config/irix6.2 ./config/irix64 ./config/linux ./config/powerpc-ibm-aix4.2.1.0 ./config/rs6000-ibm-aix4.1.4.0 ./config/solaris2.5 Cleaned up lots of configuration stuff and made the site configuration files lots easier and more uniform. To make a new file grab the BlankForm and modify it. By default, debugging is turned on for most packages. Within a package one can use `#ifdef H5AC_DEBUG' to wrap debugging code. Other options are: --enable-debug --enable-debug=yes The default, most but not all packages. --disable-debug --enable-debug=no --enable-debug=none The symbol NDEBUG is defined and none of the package debug symbols. --enable-debug=all Debugging is turned on for all packages. This might produce lots of output. --enable-debug=g,d Debugging is turned on for H5G and H5D. A compile mode is also now supported --enable-production --enable-production=yes The library is compiled with optimizations turned on. The compiler flags are augmented by adding PROD_CFLAGS and PROD_CPPFLAGS which are defined in the site config file. --disable-production --enable-production=no The default. The library is compiled for development by including DEBUG_CFLAGS and DEBUG_CPPFLAGS defined in the site config file. This is usually just `-g'. --enable-production=profile --enable-production=pg Builds a library for profiling by including the flags from PROFILE_CFLAGS and PROFILE_CPPFLAGS defined in the site config file. This is usullay just `-pg' but it could include optimization flags as well depending on the type of profile one wants. In summary, configure by saying `./configure' and you'll get a development version of the library. Configure by saying `./configure --enable-production --disable-debug' and you'll get a production version with no debugging code.
* [svn-r283] Removed nearly all DEBUG flags to make it more suitable for alphaAlbert Cheng1998-02-161-2/+2
| | | | release.
* [svn-r259] Revised it to work properly with "configure --enable-parallel". ThisAlbert Cheng1998-02-121-36/+1
| | | | | | | | | | | | | | | | | should be launched by the following environment variables setting (in csh shell style.) #!/bin/csh -f set mpi1_inc="" #mpi-1 include set mpi1_lib="" #mpi-1 library set mpio_inc=-I$HOME/ROMIO/include #mpio include set mpio_lib="-L$HOME/ROMIO/lib/IRIX64/" #mpio library setenv MPI_INC "-DHAVE_PARALLEL $mpi1_inc $mpio_inc" setenv MPI_LIB "$mpi1_lib $mpio_lib" ./configure --enable-parallel
* [svn-r237] I am checking in changes made by Robb. Turn off another two tediousAlbert Cheng1998-02-101-2/+4
| | | | | | warnings. # -woff 1209 about constant expressions # -woff 1196 about __vfork() being implicitly declared, config prob.
* [svn-r226] Turned off couple tedious warning messages. One (1174) due to ↵Albert Cheng1998-02-061-1/+5
| | | | | | | incorrect local O2K system configuration. The other (1429 about long long) is ignorable since long long is standard in the next version of ANSI C.
* [svn-r199] Added -ansi compile option.Albert Cheng1998-01-301-1/+1
|
* [svn-r197] Changes since 19980129Robb Matzke1998-01-291-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | ---------------------- ./config/freebds2.2.1 ./config/irix64 ./config/linux Added -DH5T_DEBUG to the debugging flags. Also changed `true' to `:' for the Irix64 ranlib program. This turns on printing of data type conversion statistics when the program exits. ./html/Datatypes.html Fixed documentation for data conversion functions and updated examples. ./src/H5D.c The I/O pipeline updates data type conversion statistics. ./src/H5T.c ./src/H5Tconv.c ./src/H5Tpkg.h ./src/H5Tpublic.h Cleaned up data type conversion registration interface.
* [svn-r190] initial version for IRIX64 OS such as those on O2K and PowerAlbert Cheng1998-01-281-0/+56
Challenge.