Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ejh doc #34

Merged
merged 6 commits into from
Nov 28, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -745,6 +745,7 @@ WARN_LOGFILE =

INPUT = @CMAKE_CURRENT_SOURCE_DIR@/source \
@CMAKE_CURRENT_SOURCE_DIR@/../src \
@CMAKE_CURRENT_SOURCE_DIR@/../examples/c \
@CMAKE_CURRENT_SOURCE_DIR@/../../pio_build_nag/src/flib

# This tag can be used to specify the character encoding of the source files
Expand Down
4 changes: 3 additions & 1 deletion doc/source/mach_walkthrough.txt
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,9 @@ sudo make install
<p>When debugging build issues, it's helpful to be able to do a clean
build from the command line, including tests:

<pre>rm -rf * && CFLAGS=-g CC=mpicc FC=mpifort cmake -DNetCDF_C_PATH=/usr/local -DNetCDF_Fortran_PATH=/usr/local -DPnetCDF_PATH=/usr/local -DPIO_HDF5_LOGGING=On .. && make VERBOSE=1 all tests check</pre>
<pre>
rm -rf * && CFLAGS=-g CC=mpicc FC=mpifort cmake -DNetCDF_C_PATH=/usr/local -DNetCDF_Fortran_PATH=/usr/local -DPnetCDF_PATH=/usr/local -DPIO_HDF5_LOGGING=On .. && make VERBOSE=1 all tests check
</pre>

<p>(Note the optional CFLAGS=-g which allows the use of a debugger
with this code. Also note the optional VERBOSE=1 provided to make,
Expand Down
Loading