Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

dcl2inc(1) [debian man page]

DCL2INC(1)						      General Commands Manual							DCL2INC(1)

NAME
dcl2inc - postprocess ftnchek .dcl files to create separate INCLUDE files SYNOPSIS
dcl2inc *.dcl DESCRIPTION
dcl2inc postprocessing declaration files output by ftnchek(1), replacing unique COMMON block definitions by Fortran INCLUDE statements. For each input .dcl file, a modified output .dcn file is produced, together with include files named by the COMMON block name, with file- name extension .inc. In addition, dcl2inc produces on stdout a list of Makefile dependencies for the UNIX make(1) utility. These can be appended to the project Makefile to ensure that any subsequent changes to .inc files provoke recompilation of source files that include them. dcl2inc warns about COMMONs which differ from their first occurrence, and simply copies them to the output .dcn file, instead of replacing them with an INCLUDE statement. Thus, any COMMON statements that are found in the output .dcn files should be examined carefully to deter- mine why they differ: they may well be in error. Replication of identical data, and bugs arising from subsequent modification of only part of it, is a significant reason why Fortran pro- gramming projects should require that COMMON declarations occur in separate include files, so that there is only a single point of defini- tion of any global object. Even though the Fortran INCLUDE statement was tragically omitted from the 1977 Standard, it has long been implemented by virtually all com- piler vendors, and is part of the 1990 Standard. In practice, there is therefore no portability problem associated with use of INCLUDE statements, provided that one avoids nonportable file names. As long as the code obeys Fortran's limit of six-character alphanumeric names, the filenames generated by dcl2inc will be acceptable on all current popular operating systems. Fortran's default, or IMPLICIT, variable typing is deprecated in modern programming languages, because it encourages sloppy documentation, and worse, bugs due to misspelled variables, or variables that have been truncated because they extend past column 72. If all variables used are explicitly typed, and a compiler option is used to reject all program units with untyped variables, variable spelling and trunca- tion errors can be eliminated. Variable declarations that have been produced automatically by a tool like ftnchek(1) or pfort(1) have a consistent format that facilitates application of stream editors (e.g. to change array dimensions or rename variables), and simple floating-point precision conversion tools like d2s(1), dtoq(1), dtos(1), qtod(1), s2d(1), and stod(1). CAVEAT
The current version (2.9) of ftnchek(1) does not produce Fortran EQUIVALENCE statements in .dcl files, so you must be careful to preserve them when replacing original declarations with new ones from .dcl or .dcn files. SEE ALSO
d2s(1), dtoq(1), dtos(1), ftnchek(1), make(1), pfort(1), qtod(1), s2d(1), stod(1). AUTHOR
Nelson H. F. Beebe, Ph.D. Center for Scientific Computing Department of Mathematics University of Utah Salt Lake City, UT 84112 Tel: +1 801 581 5254 FAX: +1 801 581 4148 Email: <beebe@math.utah.edu> Version 1.00 12 March 1995 DCL2INC(1)

Check Out this Related Man Page

F77(1)							      General Commands Manual							    F77(1)

NAME
f77 - Fortran 77 compiler SYNOPSIS
f77 [ option ] ... file ... DESCRIPTION
F77 is the UNIX Fortran 77 compiler. It accepts several types of arguments: Arguments whose names end with `.f' are taken to be Fortran 77 source programs; they are compiled, and each object program is left on the file in the current directory whose name is that of the source with `.o' substituted for '.f'. Arguments whose names end with `.r' or `.e' are taken to be Ratfor or EFL source programs, respectively; these are first transformed by the appropriate preprocessor, then compiled by f77. In the same way, arguments whose names end with `.c' or `.s' are taken to be C or assembly source programs and are compiled or assembled, producing a `.o' file. The following options have the same meaning as in cc(1). See ld(1) for load-time options. -c Suppress loading and produce `.o' files for each source file. -p Prepare object files for profiling, see prof(1). -O Invoke an object-code optimizer. -S Compile the named programs, and leave the assembler-language output on corresponding files suffixed `.s'. (No `.o' is created.). -f Use a floating point interpreter (for PDP11's that lack 11/70-style floating point). -o output Name the final output file output instead of `a.out'. The following options are peculiar to f77. -onetrip Compile DO loops that are performed at least once if reached. (Fortran 77 DO loops are not performed at all if the upper limit is smaller than the lower limit.) -u Make the default type of a variable `undefined' rather than using the default Fortran rules. -C Compile code to check that subscripts are within declared array bounds. -w Suppress all warning messages. If the option is `-w66', only Fortran 66 compatibility warnings are suppressed. -F Apply EFL and Ratfor preprocessor to relevant files, put the result in the file with the suffix changed to `.f', but do not compile. -m Apply the M4 preprocessor to each `.r' or `.e' file before transforming it with the Ratfor or EFL preprocessor. -Ex Use the string x as an EFL option in processing `.e' files. -Rx Use the string x as a Ratfor option in processing `.r' files. Other arguments are taken to be either loader option arguments, or F77-compatible object programs, typically produced by an earlier run, or perhaps libraries of F77-compatible routines. These programs, together with the results of any compilations specified, are loaded (in the order given) to produce an executable program with name `a.out'. FILES
file.[fresc] input file file.o object file a.out loaded output /usr/lib/f77pass1 compiler /lib/c1 pass 2 /lib/c2 optional optimizer /usr/lib/libF77.a intrinsic function library /usr/lib/libI77.a Fortran I/O library /lib/libc.a C library, see section 3 SEE ALSO
S. I. Feldman, P. J. Weinberger, A Portable Fortran 77 Compiler prof(1), cc(1), ld(1) DIAGNOSTICS
The diagnostics produced by f77 itself are intended to be self-explanatory. Occasional messages may be produced by the loader. BUGS
The Fortran 66 subset of the language has been exercised extensively; the newer features have not. F77(1)
Man Page