From 42bbb8ef8748dc15a6f33e94f2c15a76360f62ef Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Tue, 16 Mar 2004 19:23:24 +0000 Subject: [PATCH] Fixec by David and Ralph 3/16/2004 This commit was SVN r862. --- src/tools/laminfo/param.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/tools/laminfo/param.cc b/src/tools/laminfo/param.cc index beca546cb9..81cbbc15b1 100644 --- a/src/tools/laminfo/param.cc +++ b/src/tools/laminfo/param.cc @@ -311,6 +311,9 @@ void laminfo::do_config(bool want_all) out("Fortran77 compiler", "compiler:f77:command", LAM_F77); out("Fortran90 compiler", "compiler:f90:command", LAM_F90); + +#ifdef LAM_SIZEOF_FORTRAN_INT + if (want_all) { out("Fort integer size", "compiler:fortran:sizeof:integer", LAM_SIZEOF_FORTRAN_INT); @@ -337,6 +340,8 @@ void laminfo::do_config(bool want_all) LAM_ALIGNMENT_FORTRAN_REAL); } +#endif LAM_SIZEOF_FORTRAN_INT + out("C profiling", "option:profiling:c", cprofiling); out("C++ profiling", "option:profiling:cxx", cxxprofiling); out("Fortran77 profiling", "option:profiling:f77", f77profiling);