need dependency on bash for REPLACE_BASH to work properly.
[pkgsrcv2.git] / devel / ftnchek / DESCR
1 Ftnchek (short for Fortran checker) is designed to detect certain
2 errors in a Fortran program that a compiler usually does not.  ftnchek
3 is not primarily intended to detect syntax errors.  Its purpose is to
4 assist the user in finding semantic errors.  Semantic errors are legal
5 in the Fortran language but are wasteful or may cause incorrect
6 operation.  For example, variables which are never used may indicate
7 some omission in the program; uninitialized variables contain garbage
8 which may cause incorrect results to be calculated; and variables
9 which are not declared may not have the intended type.  ftnchek is
10 intended to assist users in the debugging of their Fortran program.
11 It is not intended to catch all syntax errors.  This is the function
12 of the compiler.  Prior to using ftnchek, the user should verify that
13 the program compiles correctly.