diff options
author | Paul Harten <pharten@ncsa.uiuc.edu> | 1998-07-07 21:09:07 (GMT) |
---|---|---|
committer | Paul Harten <pharten@ncsa.uiuc.edu> | 1998-07-07 21:09:07 (GMT) |
commit | 1bdb53fb6a8aed417d6fdedb0f11b73d6afae5d5 (patch) | |
tree | 11e03a72937aca7d302d9354b22e16dba5765967 /testpar/Makefile.ascired | |
parent | bcf649388cb246fecf5bac670c54c7c4d654eb44 (diff) | |
download | hdf5-1bdb53fb6a8aed417d6fdedb0f11b73d6afae5d5.zip hdf5-1bdb53fb6a8aed417d6fdedb0f11b73d6afae5d5.tar.gz hdf5-1bdb53fb6a8aed417d6fdedb0f11b73d6afae5d5.tar.bz2 |
[svn-r461] Purpose:
The purpose of the change is to correct the H5 filenames declared in
testphdf5.c when used on the Intel TFLOP PFS system.
Problem:
The ROMIO library complains of the H5 filenames having no "piofs:",
"pfs:", "ufs:", or "nfs:" prefixes on the filenames. The only type
currently recognized are the "pfs:" prefixes, and the files must
reside in the Intel TFLOP PFS system: /pfs.
Solution: (REQUIRED)
The compile flag -DPOOMA_ARCH=TFLOP is added to the list of CFLAGS in
Makefile.ascired located in the parallel test directory. This compile
flag will allow a special set of filenames to be used when compiling
testphdf5.c on the Intel TFLOP. In addition, instructions to editing
the filenames in testphdf5.c to reside in the user's own /pfs directory
are included in INSTALL.ascired.
Platform tested:
Intel TFLOP
Diffstat (limited to 'testpar/Makefile.ascired')
-rw-r--r-- | testpar/Makefile.ascired | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/Makefile.ascired b/testpar/Makefile.ascired index 4906b87..e599602 100644 --- a/testpar/Makefile.ascired +++ b/testpar/Makefile.ascired @@ -21,7 +21,7 @@ LIBS = -lnoop_stubs CC=cicc # 1429 -- long long non-standard -CFLAGS=-g +CFLAGS=-g -DPOOMA_ARCH=TFLOP CPPFLAGS=-I. -I../src $(MPI_INC) $(MPIO_INC) RM=rm -f |