summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1998-03-18 19:57:35 (GMT)
committerRobb Matzke <matzke@llnl.gov>1998-03-18 19:57:35 (GMT)
commit62960c3d9643eafc4b3b7f997289b43f88650f96 (patch)
treeb35cc9d5e0970a64a31dae65b076253ae54c4ac4 /config
parent2fd149a5824c22920d2102b97db8478b2f61d5dd (diff)
downloadhdf5-62960c3d9643eafc4b3b7f997289b43f88650f96.zip
hdf5-62960c3d9643eafc4b3b7f997289b43f88650f96.tar.gz
hdf5-62960c3d9643eafc4b3b7f997289b43f88650f96.tar.bz2
[svn-r326] Changes since 19980318
---------------------- ./config/linux Turned on MPIO if the host name is `arborea' so I always compile it and realize when I break something instead of waiting for Albert or Kim to find it. ./MANIFEST ./html/H5.user.html ./html/IOPipe.html [NEW] ./html/pipe1.gif [NEW] ./html/pipe1.obj [NEW] ./html/pipe2.gif [NEW] ./html/pipe2.obj [NEW] ./html/pipe3.gif [NEW] ./html/pipe3.obj [NEW] ./html/pipe4.gif [NEW] ./html/pipe4.obj [NEW] ./html/pipe5.gif [NEW] ./html/pipe5.obj [NEW] Documented the raw data I/O pipeline.
Diffstat (limited to 'config')
-rw-r--r--config/linux6
1 files changed, 4 insertions, 2 deletions
diff --git a/config/linux b/config/linux
index 4d5a2b3..78a9913 100644
--- a/config/linux
+++ b/config/linux
@@ -33,11 +33,13 @@
# $debug $warn -DH5F_LOW_DFLT=H5F_LOW_SEC2
#
+if [ arborea = `hostname` -a -z "$enable_parallel" ]; then
+ enable_parallel=mpio
+fi
+
# The following flags only apply to the gcc compiler.
CC=${CC:-gcc}
-
-
# First set up the CFLAGS arguments.
if test "X" = "X$CFLAGS"; then
warn="-Wall -Wshadow -Wpointer-arith -Wcast-qual -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs"