mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
d8c843156a
Purpose: [is this a bug fix? feature? ...] Description: [describe the bug, or describe the new feature, etc] Solution: [details about the changes, algorithm, etc...] [Please as detail as you can since your own explanation is better than others guessing it from the code.] Platforms tested: [machines you have tested the changed version. This is absolute important. Test it out on at least two or three different platforms such as Big-endian-32bit (SUN/IRIX), little-endian-32(LINUX) and 64-bit (IRIX64/UNICOS/DEC-ALPHA) would be good.]
18 lines
456 B
Bash
18 lines
456 B
Bash
#!/bin/sh
|
|
|
|
JH5INSTALLDIR=/afs/ncsa/projects/hdf/java/java2/mcgrath/arabica/New5
|
|
HDF5LIB=/afs/ncsa/projects/hdf/release/prehdf5-1.2.1/SunOS_5.7/lib
|
|
|
|
#make this relative to the source root...
|
|
PWD=/afs/ncsa.uiuc.edu/projects/hdf/java/java2/mcgrath/arabica/java-hdf5
|
|
LIBDIR=$JH5INSTALLDIR"/lib"
|
|
|
|
CLASSPATH=".:"$LIBDIR"/jhdf5.jar"
|
|
|
|
LD_LIBRARY_PATH=$HDF5LIB":"$LIBDIR"/solaris"
|
|
|
|
export CLASSPATH
|
|
export LD_LIBRARY_PATH
|
|
|
|
/usr/java1.2/bin/java CreateAttribute $*
|