📄 readme
字号:
On VAX, Cray, or Research Tenth-Edition Unix systems, you mayneed to add -DVAX, -DCRAY, or -DV10 (respectively) to CFLAGSto make fp.h work correctly. Alternatively, you may need toedit fp.h to suit your machine.If your compiler complains about the signal calls in main.c, s_paus.c,and signal_.c, you may need to adjust signal1.h suitably. See thecomments in signal1.h.You may need to supply the following non-ANSI routines: fstat(int fileds, struct stat *buf) is similarto stat(char *name, struct stat *buf), except thatthe first argument, fileds, is the file descriptorreturned by open rather than the name of the file.fstat is used in the system-dependent routinecanseek (in the libf2c source file err.c), whichis supposed to return 1 if it's possible to issueseeks on the file in question, 0 if it's not; you mayneed to suitably modify err.c . On non-UNIX systems,you can avoid references to fstat and stat by compilingwith NON_UNIX_STDIO defined; in that case, you may needto supply access(char *Name,0), which is supposed toreturn 0 if file Name exists, nonzero otherwise. char * mktemp(char *buf) is supposed to replace the6 trailing X's in buf with a unique number and thenreturn buf. The idea is to get a unique name fora temporary file.On non-UNIX systems, you may need to change a few other,e.g.: the form of name computed by mktemp() in endfile.c andopen.c; the use of the open(), close(), and creat() systemcalls in endfile.c, err.c, open.c; and the modes in calls onfopen() and fdopen() (and perhaps the use of fdopen() itself-- it's supposed to return a FILE* corresponding to a givenan integer file descriptor) in err.c and open.c (component ufmtof struct unit is 1 for formatted I/O -- text mode on some systems-- and 0 for unformatted I/O -- binary mode on some systems).Compiling with -DNON_UNIX_STDIO omits all references to creat()and almost all references to open() and close(), the exceptionbeing in the function f__isdev() (in open.c).If you wish to use translated Fortran that has funny notionsof record length for direct unformatted I/O (i.e., that assumesRECL= values in OPEN statements are not bytes but rather countsof some other units -- e.g., 4-character words for VMS), then youshould insert an appropriate #define for url_Adjust at thebeginning of open.c . For VMS Fortran, for example,#define url_Adjust(x) x *= 4would suffice.By default, Fortran I/O units 5, 6, and 0 are pre-connected tostdin, stdout, and stderr, respectively. You can change thisbehavior by changing f_init() in err.c to suit your needs.Note that f2c assumes READ(*... means READ(5... and WRITE(*...means WRITE(6... . Moreover, an OPEN(n,... statement that doesnot specify a file name (and does not specify STATUS='SCRATCH')assumes FILE='fort.n' . You can change this by editing open.cand endfile.c suitably.Unless you adjust the "#define MXUNIT" line in fio.h, Fortran units0, 1, ..., 99 are available, i.e., the highest allowed unit numberis MXUNIT - 1.Lines protected from compilation by #ifdef Allow_TYQUADare for a possible extension to 64-bit integers in whichinteger = int = 32 bits and longint = long = 64 bits.The makefile does not attempt to compile pow_qq.c, qbitbits.c,and qbitshft.c, which are meant for use with INTEGER*8. To useINTEGER*8, you must modify f2c.h to declare longint and ulongintappropriately; then add $(QINT) to the end of the makefile'sdependency list for libf2c.a (if makefile is a copy of makefile.u;for the PC makefiles, add pow_qq.obj qbitbits.obj qbitshft.objto the library's dependency list and adjust libf2c.lbc or libf2c.syaccordingly). Also add -DAllow_TYQUAD to the makefile's CFLAGSassignment. To make longint and ulongint available, it may sufficeto add -DINTEGER_STAR_8 to the CFLAGS assignment.Following Fortran 90, s_cat.c and s_copy.c allow the target of a(character string) assignment to be appear on its right-hand, atthe cost of some extra overhead for all run-time concatenations.If you prefer the extra efficiency that comes with the Fortran 77requirement that the left-hand side of a character assignment notbe involved in the right-hand side, compile s_cat.c and s_copy.cwith -DNO_OVERWRITE .Extensions (Feb. 1993) to NAMELIST processing: 1. Reading a ? instead of &name (the start of a namelist) causesthe namelist being sought to be written to stdout (unit 6);to omit this feature, compile rsne.c with -DNo_Namelist_Questions. 2. Reading the wrong namelist name now leads to an error messageand an attempt to skip input until the right namelist name is found;to omit this feature, compile rsne.c with -DNo_Bad_Namelist_Skip. 3. Namelist writes now insert newlines before each variable; to omitthis feature, compile xwsne.c with -DNo_Extra_Namelist_Newlines. 4. (Sept. 1995) When looking for the &name that starts namelistinput, lines whose first non-blank character is something otherthan &, $, or ? are treated as comment lines and ignored, unlessrsne.c is compiled with -DNo_Namelist_Comments.Nonstandard extension (Feb. 1993) to open: for sequential files,ACCESS='APPEND' (or access='anything else starting with "A" or "a"')causes the file to be positioned at end-of-file, so a write willappend to the file.Some buggy Fortran programs use unformatted direct I/O to writean incomplete record and later read more from that record thanthey have written. For records other than the last, the unwrittenportion of the record reads as binary zeros. The last record isa special case: attempting to read more from it than was writtengives end-of-file -- which may help one find a bug. Some otherFortran I/O libraries treat the last record no differently thanothers and thus give no help in finding the bug of reading morethan was written. If you wish to have this behavior, compileuio.c with -DPad_UDread .If you want to be able to catch write failures (e.g., due to adisk being full) with an ERR= specifier, compile dfe.c, due.c,sfe.c, sue.c, and wsle.c with -DALWAYS_FLUSH. This will lead toslower execution and more I/O, but should make ERR= work asexpected, provided fflush returns an error return when itsphysical write fails.Carriage controls are meant to be interpreted by the UNIX colprogram (or a similar program). Sometimes it's convenient to useonly ' ' as the carriage control character (normal single spacing).If you compile lwrite.c and wsfe.c with -DOMIT_BLANK_CC, formattedexternal output lines will have an initial ' ' quietly omitted,making use of the col program unnecessary with output that onlyhas ' ' for carriage control.The Fortran 77 Standard leaves it up to the implementation whetherformatted writes of floating-point numbers of absolute value < 1 havea zero before the decimal point. By default, libI77 omits suchsuperfluous zeros, but you can cause them to appear by compilinglwrite.c, wref.c, and wrtfmt.c with -DWANT_LEAD_0 .If your (Unix) system lacks a ranlib command, you don't need it.Either comment out the makefile's ranlib invocation, or installa harmless "ranlib" command somewhere in your PATH, such as theone-line shell script exit 0or (on some systems) exec /usr/bin/ar lts $1 >/dev/nullBy default, the routines that implement complex and double complexdivision, c_div.c and z_div.c, call sig_die to print an error messageand exit if they see a divisor of 0, as this is sometimes helpful fordebugging. On systems with IEEE arithmetic, compiling c_div.c andz_div.c with -DIEEE_COMPLEX_DIVIDE causes them instead to set boththe real and imaginary parts of the result to +INFINITY if thenumerator is nonzero, or to NaN if it vanishes.Nowadays most Unix and Linux systems have function int ftruncate(int fildes, off_t len);defined in system header file unistd.h that adjusts the length of filedescriptor fildes to length len. Unless endfile.c is compiled with-DNO_TRUNCATE, endfile.c #includes "unistd.h" and calls ftruncate() ifnecessary to shorten files. If your system lacks ftruncate(), compileendfile.c with -DNO_TRUNCATE to make endfile.c use the older and moreportable scheme of shortening a file by copying to a temporary fileand back again.The initializations for "f2c -trapuv" are done by _uninit_f2c(),whose source is uninit.c, introduced June 2001. On IEEE-arithmeticsystems, _uninit_f2c should initialize floating-point variables tosignaling NaNs and, at its first invocation, should enable theinvalid operation exception. Alas, the rules for distinguishingsignaling from quiet NaNs were not specified in the IEEE P754 standard,nor were the precise means of enabling and disabling IEEE-arithmeticexceptions, and these details are thus system dependent. There are#ifdef's in uninit.c that specify them for some popular systems. Ifyours is not one of these systems, it may take some detective work todiscover the appropriate details for your system. Sometimes it helpsto look in the standard include directories for header files withrelevant-sounding names, such as ieeefp.h, nan.h, or trap.h, andit may be simplest to run experiments to see what distinguishes asignaling from a quiet NaN. (If x is initialized to a signalingNaN and the invalid operation exception is masked off, as it shouldbe by default on IEEE-arithmetic systems, then computing, say,y = x + 1 will yield a quiet NaN.)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -