1sc-mkf77sym(1) MPQC sc-mkf77sym(1)
2
3
4
6 sc-mkf77sym - The sc-mkf77sym program is used to generate symbols for
7 linking FORTRAN subroutines into MPQC.
8
10 sc-mkf77sym input output
11
13 sc-mkf77sym requires two arguments: the name of the input file and the
14 name of the output file. The input file contains C preprocessor
15 definitions of the form '#define F77_FUNC' where FUNC is the name of a
16 FORTRAN 77 function. The output file assigns these definitions to the C
17 symbol that will link with the FORTRAN 77 function. For example, if
18 FORTRAN symbols are formed from the routine name by converting to
19 lowercase and have appending an underscore, then the following input
20 file:
21
22 #define F77_DGEMM
23
24 will result in the following ouput file:
25
26 #define F77_DGEMM dgemm_
27
29 sc-mkf77sym is open-source software; you can redistribute it and/or
30 modify it under the terms of the GNU General Public License as
31 published by the Free Software Foundation; either version 2 of the
32 License, or (at your option) any later version.
33
35 sc-mkf77sym is distributed in the hope that it will be useful, but
36 WITHOUT ANY WARRANTY; without even the implied warranty of
37 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
38 General Public License for more details.
39
40
41
42Version 2.3.1 Thu Jan 20 2022 sc-mkf77sym(1)