Skip to content

Commit d45eefe

Browse files
committed
move build recipes to folder doc
git-svn-id: https://svn.mcs.anl.gov/repos/parallel-netcdf/branches/am@2966 c368ceb8-fd28-0410-a457-e46ee1d7cd4a
1 parent a763226 commit d45eefe

30 files changed

+38
-131
lines changed

INSTALL

+10-90
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ default configuration of PnetCDF up and running.
4343
different command syntax. Command "echo $SHELL" prints out the current
4444
shell used by your terminal program.
4545

46-
(b) Unpack the tar file and go to the top level directory:
46+
(b) Unpack the tar file and go to the top level directory, for example:
4747

48-
gunzip parallel-netcdf-1.6.0.tar.gz
49-
tar xf parallel-netcdf-1.6.0.tar
50-
cd parallel-netcdf-1.6.0
48+
gunzip parallel-netcdf-1.8.0.tar.gz
49+
tar xf parallel-netcdf-1.8.0.tar
50+
cd parallel-netcdf-1.8.0
5151

5252
(c) Choose an installation directory, say $HOME/PnetCDF
5353

@@ -155,7 +155,7 @@ Some influential environment variables:
155155
MPICXX MPI C++ compiler
156156
MPIF77 MPI Fortran 77 compiler
157157
MPIF90 MPI Fortran 90 compiler
158-
CC Overwritten by MPICC if MPICC is set
158+
CC Overwritten by MPICC if MPICC is set
159159
CXX Overwritten by MPICXX if MPICXX is set
160160
F77 Overwritten by MPIF77 if MPIF77 is set
161161
FC Overwritten by MPIF90 if MPIF90 is set
@@ -202,7 +202,7 @@ Some influential environment variables:
202202
of compiler not found.
203203

204204
- For platform-specific build instructions, see one of the README.<ARCH>
205-
files.
205+
files in directory doc/.
206206

207207

208208
----
@@ -260,9 +260,10 @@ Currently, the testing uses up to 8 processes. Hence, please make sure the
260260
process allocation at least contains 8 processes.
261261

262262
One can also run "make ptest" on batch queue systems. One example PBS script is
263-
provide "pbs.script". It is recommended to build all the testing executables
264-
before submitting the batch job. This can be done by running the below command.
265-
cd test ; make ; cd ../examples ; make ; cd ..
263+
provide "pbs.script" in directory doc/. It is recommended to build all the
264+
testing executables before submitting the batch job. This can be done by
265+
running the below command.
266+
make tests
266267

267268
Note on setting TESTOUTDIR. In order to run parallel test correctly, the
268269
output directory must be on a file system accessible to all MPI processes. We
@@ -283,84 +284,3 @@ Issue with older MPI-IO implementation.
283284

284285
Please send an email to [email protected]
285286

286-
287-
288-
-----------------------------------------------------------------------------
289-
Notes from previous releases
290-
-----------------------------------------------------------------------------
291-
292-
To INSTALL parallel netCDF library:
293-
294-
1. 'autoreconf' (only necessary if you make changes to configure.in or
295-
other configure-related files)
296-
297-
2. ./configure --prefix=<install dir> --with-mpi=/path/to/implementation
298-
the --with-mpi argument should specify the prefix of where the mpi
299-
implementation was installed. If your mpicc is in
300-
/usr/local/mpich-1.2.3/bin/mpicc then use the prefix
301-
--with-mpi=/usr/local/mpich-1.2.3
302-
303-
NOTE: If configure cannot find your MPI implementation's C and/or
304-
Fortran compilers, define MPICC, MPICXX, MPIF77 and MPIF90
305-
environment variables to be the name of those compilers. The
306-
configure script will then use those values instead of trying
307-
to guess.
308-
309-
3. make
310-
311-
We have tried to make the Makefiles platform-independent.
312-
However, each platform has its own make quirks: if you run into
313-
problems, please send a report to the developers at
314-
[email protected]. If you have GNU Make, try using
315-
that.
316-
317-
4. make install
318-
319-
IF THIS DOESN'T WORK:
320-
321-
Autoconf should do the right thing: using the system compiler to perform
322-
autoconf tests and then use the MPI compilers to build parallel-netcdf.
323-
If you need to set specific flags for a platform, and autoconf does not
324-
set them for you, then you will have to set some environment variables
325-
to help out the configure script. Here are some suggested settings:
326-
327-
For Solaris
328-
MPICC=mpicc
329-
330-
For SGI Origin2000
331-
MPICC = mpicc
332-
------------ OR -------------
333-
CC='/bin/cc -64 -mips4 -lmpi'
334-
CPPFLAGS=-DNDEBUG
335-
CFLAGS=-O
336-
FC='/bin/f90 -64'
337-
FFLAGS=-O
338-
F90='/bin/f90 -64'
339-
CXX='/bin/CC -64'
340-
CXXFLAGS=-O
341-
342-
For Linux
343-
MPICC=mpicc
344-
CPPFLAGS='-DNDEBUG -Df2cFortran'
345-
CFLAGS=-O
346-
CXX=g++
347-
FFLAGS='-O -W'
348-
349-
For IBM SP-2
350-
MPICC mpcc_r
351-
MPIF77 /bin/mpxlf_r
352-
F90 /bin/mpxlf90_r
353-
F90FLAGS -qsuffix=f=f90
354-
CXX /bin/mpxlC_r
355-
------------- OR -------------
356-
CC xlc
357-
FC /bin/xlf
358-
F90 /bin/xlf90
359-
F90FLAGS -qsuffix=f=f90
360-
CXX /bin/xlC
361-
then manually edit macros.make:
362-
CC = mpcc_r
363-
FC = mpxlf_r
364-
F90 = mpxlf90_r
365-
F90FLAGS = -qsuffix=f=f90
366-
CXX = mpxlC_r

Makefile.am

-20
Original file line numberDiff line numberDiff line change
@@ -18,28 +18,11 @@ if BUILD_DOCS
1818
SUBDIRS += doc
1919
endif
2020

21-
CLEANFILES = pnetcdf_pc
22-
23-
DISTCLEANFILES = pnetcdf.pc
24-
2521
EXTRA_DIST = COPYRIGHT \
2622
CREDITS \
2723
INSTALL \
2824
README \
29-
README.CRAY \
30-
README.Fujitsu \
31-
README.INTEL \
32-
README.IBM \
33-
README.K-Computer \
34-
README.LINUX \
35-
README.SGI \
36-
README.SX \
37-
README.consistency \
38-
README.large_files \
3925
RELEASE_NOTES \
40-
pbs.script \
41-
cobalt.script \
42-
check_install.in \
4326
m4/foreach.m4 \
4427
m4/foreachq.m4 \
4528
m4/utils.m4
@@ -75,9 +58,6 @@ ptests:
7558
pkgconfigdir = $(libdir)/pkgconfig
7659
pkgconfig_DATA = libpnetcdf.pc
7760

78-
# The script shows the end users how pnetcdf is built
79-
bin_SCRIPTS = pnetcdf-config
80-
8161
install-data-hook:
8262
@echo '+----------------------------------------------------------------------------+'
8363
@echo '|'

NEWS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Please see Parallel-netCDF project web sites:
22
http://cucis.ece.northwestern.edu/projects/PnetCDF
3-
https://trac.mcs.anl.gov/projects/parallel-netcdf/wiki
3+
http://trac.mcs.anl.gov/projects/parallel-netcdf

README

+15-13
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ formats (CDF-1 and 2).
88

99
In addition, PnetCDF supports the CDF-5 file format, an extension of CDF-2,
1010
that supports more data types and allows users to define large dimensions,
11-
attributes, and variables (>2B elements).
11+
attributes, and variables (>2B array elements).
1212

1313
NetCDF gives scientific programmers a space-efficient and portable means for
1414
storing data. However, it does so in a serial manner, making it difficult to
1515
achieve high I/O performance. By making some small changes to the NetCDF APIs,
1616
PnetCDF can use MPI-IO to achieve high-performance parallel I/O.
1717

1818
More extensive installation guides can be found in file INSTALL. Additional
19-
information regarding the contents of the release can be found in
20-
the RELEASE_NOTES file in the top-level directory. Finally, the PnetCDF web
19+
information regarding the contents of the release can be found in the
20+
RELEASE_NOTES file in the top-level directory. Finally, the PnetCDF web
2121
sites:
2222
http://trac.mcs.anl.gov/projects/parallel-netcdf
2323
http://cucis.ece.northwestern.edu/projects/PnetCDF
@@ -26,13 +26,13 @@ contain information on bug fixes and new releases.
2626

2727
Requirements:
2828

29-
- Parallel-NetCDF relies on MPI-IO. ROMIO, the most common MPI-IO
30-
implementation, can make use of a prefix in front of the file name to
31-
specify the underlying file system and override ROMIO's auto detection. A
32-
typical prefix would look like "nfs:" or "pvfs2:". Bear this in mind if
33-
you use a file name with ':' characters. In some cases, ROMIO might
34-
think you are passing in a prefix and will complain about an unsupported
35-
file system type. If that happens, add a file-system prefix to your file
29+
- PnetCDF relies on MPI-IO. ROMIO, the most common MPI-IO implementation,
30+
can make use of a prefix in front of the file name to specify the
31+
underlying file system and override ROMIO's auto detection. A typical
32+
prefix would look like "nfs:" or "pvfs2:". Bear this in mind if you use
33+
a file name with ':' characters. In some cases, ROMIO might think you
34+
are passing in a prefix and will complain about an unsupported file
35+
system type. If that happens, add a file-system prefix to your file
3636
name.
3737

3838
- To build parallel-netcdf you will need some additional programs:
@@ -44,7 +44,8 @@ Requirements:
4444

4545

4646
Build recipes:
47-
Several machine- and platform-specific build recipes are available.
47+
Several machine- and platform-specific build recipes are available under
48+
the directory of doc.
4849
- README.IBM (BlueGene systems)
4950
- README.SX (NEC SX systems)
5051
- README.CRAY (Cray systems)
@@ -63,8 +64,9 @@ Note on supporting large files and large variables.
6364

6465
- In places where you might use NF_UNLIMITED to define an unlimited
6566
dimension in one of the nfmpi_ routines, use NFMPI_UNLIMITED.
66-
NFMPI_UNLIMITED will be defined as the proper type for nfmpi_def_dim,
67-
whereas nf_unlimited might be too small. Similarly, for Fortran 90,
67+
NFMPI_UNLIMITED has been defined as the proper type for nfmpi_def_dim,
68+
whereas NF_UNLIMITED might be too small. Similarly, for Fortran 90,
6869
use NF90MPI_UNLIMITED instead of NF90_UNLIMITED.
6970

7071
Please send an email to [email protected]
72+

RELEASE_NOTES

+1-1
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ version 1.5.0 (July 8, 2014)
768768
processes used to run the tests. The testing uses up to 8 MPI processes.
769769

770770
* A sample PBS script file is provided to test "make ptest" on machines
771-
with a batch queue system: pbs.script. This example script can be
771+
with a batch queue system: doc/pbs.script. This example script can be
772772
submitted from the build root directory (where you run "make" command to
773773
build PnetCDF library).
774774

configure.ac

+4-3
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ AC_ARG_VAR(MPICC, MPI C compiler)
147147
AC_ARG_VAR(MPICXX, MPI C++ compiler)
148148
AC_ARG_VAR(MPIF77, MPI Fortran 77 compiler)
149149
AC_ARG_VAR(MPIF90, MPI Fortran 90 compiler)
150-
AC_ARG_VAR(CC, Overwritten by MPICC if MPICC is set)
150+
AC_ARG_VAR(CC, Overwritten by MPICC if MPICC is set)
151151
AC_ARG_VAR(CXX, Overwritten by MPICXX if MPICXX is set)
152152
AC_ARG_VAR(F77, Overwritten by MPIF77 if MPIF77 is set)
153153
AC_ARG_VAR(FC, Overwritten by MPIF90 if MPIF90 is set)
@@ -1303,6 +1303,7 @@ AC_CONFIG_FILES(Makefile \
13031303
benchmarks/C/Makefile \
13041304
benchmarks/FLASH-IO/Makefile \
13051305
doc/Makefile \
1306+
doc/pnetcdf-api/Makefile \
13061307
man/Makefile \
13071308
test/Makefile \
13081309
test/common/Makefile \
@@ -1328,8 +1329,8 @@ AC_CONFIG_FILES(Makefile \
13281329
# AC_CONFIG_FILES([stamp-h], [echo timestamp > stamp-h])
13291330

13301331
dnl add executable permission to pnetcdf-config and check_install
1331-
AC_CONFIG_FILES([pnetcdf-config], [chmod u+x pnetcdf-config])
1332-
AC_CONFIG_FILES([check_install], [chmod u+x check_install])
1332+
AC_CONFIG_FILES([src/utils/pnetcdf-config], [chmod u+x src/utils/pnetcdf-config])
1333+
AC_CONFIG_FILES([src/utils/check_install], [chmod u+x src/utils/check_install])
13331334

13341335
AC_OUTPUT
13351336
echo "------------------------------------------------------------------------------"

README.CRAY doc/README.CRAY

File renamed without changes.

README.Fujitsu doc/README.Fujitsu

File renamed without changes.

README.IBM doc/README.IBM

File renamed without changes.

README.INTEL doc/README.INTEL

File renamed without changes.
File renamed without changes.

README.LINUX doc/README.LINUX

File renamed without changes.

README.SGI doc/README.SGI

File renamed without changes.

README.SX doc/README.SX

File renamed without changes.
File renamed without changes.
File renamed without changes.

cobalt.script doc/cobalt.script

File renamed without changes.

pbs.script doc/pbs.script

File renamed without changes.

doc/Makefile.am doc/pnetcdf-api/Makefile.am

+1-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ EXTRA_DIST = c_api.tex \
3232
multiple_io.tex \
3333
nonblocking.tex \
3434
pnetcdf-api.bbl \
35-
pnetcdf-api.tex \
36-
porting_notes.txt \
37-
symbol_renaming.txt
35+
pnetcdf-api.tex
3836

3937
CLEANFILES = *.dvi *.log *.aux *.ps $(API_GUIDE)
4038

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/utils/Makefile.am

+6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88

99
SUBDIRS = ncmpigen ncmpidump ncmpidiff ncmpivalid pnetcdf_version ncoffsets
1010

11+
# The script shows the end users how pnetcdf is built
12+
bin_SCRIPTS = pnetcdf-config
13+
14+
EXTRA_DIST = pnetcdf-config.in \
15+
check_install.in
16+
1117
dist-hook:
1218
-rm -rf `find $(distdir) -name .svn`
1319

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)