home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / g77-0.5.15-src.tgz / tar.out / fsf / g77 / f / runtime / libF77 / README < prev    next >
Text File  |  1996-09-28  |  4KB  |  102 lines

  1. If your compiler does not recognize ANSI C headers,
  2. compile with KR_headers defined:  either add -DKR_headers
  3. to the definition of CFLAGS in the makefile, or insert
  4.  
  5. #define KR_headers
  6.  
  7. at the top of f2c.h , cabs.c , main.c , and sig_die.c .
  8.  
  9. Under MS-DOS, compile s_paus.c with -DMSDOS.
  10.  
  11. If you have a really ancient K&R C compiler that does not understand
  12. void, add -Dvoid=int to the definition of CFLAGS in the makefile.
  13.  
  14. If you use a C++ compiler, first create a local f2c.h by appending
  15. f2ch.add to the usual f2c.h, e.g., by issuing the command
  16.     make f2c.h
  17. which assumes f2c.h is installed in /usr/include .
  18.  
  19. If your system lacks onexit() and you are not using an ANSI C
  20. compiler, then you should compile main.c, s_paus.c, s_stop.c, and
  21. sig_die.c with NO_ONEXIT defined.  See the comments about onexit in
  22. the makefile.
  23.  
  24. You may need to specify the return type of signal handlers for
  25. signal.c.  By default this is `int' if KR_headers is defined, `void'
  26. otherwise.  Define RETSIGTYPE to be `int' or `void' to override the
  27. default.
  28.  
  29. If your system has a double drem() function such that drem(a,b)
  30. is the IEEE remainder function (with double a, b), then you may
  31. wish to compile r_mod.c and d_mod.c with IEEE_drem defined.
  32. On some systems, you may also need to compile with -Ddrem=remainder .
  33.  
  34. To check for transmission errors, issue the command
  35.     make check
  36. This assumes you have the xsum program whose source, xsum.c,
  37. is distributed as part of "all from f2c/src".  If you do not
  38. have xsum, you can obtain xsum.c by sending the following E-mail
  39. message to netlib@research.att.com
  40.     send xsum.c from f2c/src
  41.  
  42. The makefile assumes you have installed f2c.h in a standard
  43. place (and does not cause recompilation when f2c.h is changed);
  44. f2c.h comes with "all from f2c" (the source for f2c) and is
  45. available separately ("f2c.h from f2c").
  46.  
  47. Most of the routines in libF77 are support routines for Fortran
  48. intrinsic functions or for operations that f2c chooses not
  49. to do "in line".  There are a few exceptions, summarized below --
  50. functions and subroutines that appear to your program as ordinary
  51. external Fortran routines.
  52.  
  53. 1.    CALL ABORT prints a message and causes a core dump.
  54.  
  55. 2.    ERF(r) and DERF(d) and the REAL and DOUBLE PRECISION
  56.     error functions (with x REAL and d DOUBLE PRECISION);
  57.     DERF must be declared DOUBLE PRECISION in your program.
  58.     Both ERF and DERF assume your C library provides the
  59.     underlying erf() function (which not all systems do).
  60.  
  61. 3.    ERFC(r) and DERFC(d) are the complementary error functions:
  62.     ERFC(r) = 1 - ERF(r) and DERFC(d) = 1.d0 - DERFC(d)
  63.     (except that their results may be more accurate than
  64.     explicitly evaluating the above formulae would give).
  65.     Again, ERFC and r are REAL, and DERFC and d are DOUBLE
  66.     PRECISION (and must be declared as such in your program),
  67.     and ERFC and DERFC rely on your system's erfc().
  68.  
  69. 4.    CALL GETARG(n,s), where n is an INTEGER and s is a CHARACTER
  70.     variable, sets s to the n-th command-line argument (or to
  71.     all blanks if there are fewer than n command-line arguments);
  72.     CALL GETARG(0,s) sets s to the name of the program (on systems
  73.     that support this feature).  See IARGC below.
  74.  
  75. 5.    CALL GETENV(name, value), where name and value are of type
  76.     CHARACTER, sets value to the environment value, $name, of
  77.     name (or to blanks if $name has not been set).
  78.  
  79. 6.    NARGS = IARGC() sets NARGS to the number of command-line
  80.     arguments (an INTEGER value).
  81.  
  82. 7.    CALL SIGNAL(n,func), where n is an INTEGER and func is an
  83.     EXTERNAL procedure, arranges for func to be invoked when
  84.     signal n occurs (on systems where this makes sense).
  85.  
  86. 8.    CALL SYSTEM(cmd), where cmd is of type CHARACTER, passes
  87.     cmd to the system's command processor (on systems where
  88.     this can be done).
  89.  
  90. The makefile does not attempt to compile pow_qq.c, which is meant
  91. for use with INTEGER*8.  To use it, you must modify f2c.h to
  92. declare longint appropriately; then add pow_qq.o to the POW =
  93. line in the makefile.
  94.  
  95. Following Fortran 90, s_cat.c and s_copy.c allow the target of a
  96. (character string) assignment to be appear on its right-hand, at
  97. the cost of some extra overhead for all run-time concatenations.
  98. If you prefer the  extra efficiency that comes with the Fortran 77
  99. requirement that the left-hand side of a character assignment not
  100. be involved in the right-hand side, compile s_cat.c and s_copy.c
  101. with -DNO_OVERWRITE .
  102.