F77Section: User Contributed Perl Documentation (3)Updated: 2001-06-15 |
F77Section: User Contributed Perl Documentation (3)Updated: 2001-06-15 |
This module tries to implement a simple 'rule-of-thumb' database for various flavours of UNIX systems. A simple self-documenting Perl database of knowledge/code for figuring out how to link for various combinations of OS and compiler is embedded in the modules Perl code. Please help save the world by sending database entries for your system to kgb@aaoepp.aao.gov.au
The library list which the module returns can be explicitly overridden by setting the environment variable F77LIBS, e.g.
% setenv F77LIBS "-lfoo -lbar" % perl Makefile.PL ...
use ExtUtils::F77; # Automatic guess use ExtUtils::F77 qw(sunos); # Specify system use ExtUtils::F77 qw(linux g77); # Specify system and compiler $fortranlibs = ExtUtils::F77->runtime;
$fortranlibs = ExtUtils::F77->runtime;
More methods will probably be added in the future.