Leo3418 / f2j

Fortran-to-Java translator, especially for BLAS, LAPACK and ARPACK

Home Page:https://icl.utk.edu/f2j

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fortran-to-Java Source Code

Version 0.8.1 June 30, 2008

The old Fortran to Java CVS repository was migrated to this Git repository:

rsync -ai a.cvs.sourceforge.net::cvsroot/f2j/ cvs2git-f2j
cd cvs2git-f2j
cvs2git --blobfile=blob.dat --dumpfile=dump.dat \
    --username=keithseymour --default-eol=native \
    --encoding=utf8 --encoding=latin1 --fallback-encoding=ascii \
    .
cd ..
mkdir f2j
cd f2j
git init
cat ../cvs2git-f2j/blob.dat ../cvs2git-f2j/dump.dat | git fast-import
git remote add origin git@github.com:jonathanschilling/f2j.git
git checkout
git push origin --mirror
mv f2j/* .
rm -r CVSROOT
git add .
git commit -m "one folder less"
git branch --set-upstream-to=origin/master master
git pull
git push

Before using the f2j source code, realize that f2j was originally geared to a very specific problem - that is, translating the LAPACK and BLAS numerical libraries. f2j does not and probably never will handle all Fortran code.

Building the code

./configure
make

and optionally:

make install

For more details, see the f2j manual.

About

Fortran-to-Java translator, especially for BLAS, LAPACK and ARPACK

https://icl.utk.edu/f2j


Languages

Language:Fortran 95.3%Language:C 2.8%Language:Java 1.1%Language:Yacc 0.4%Language:Makefile 0.2%Language:Shell 0.1%Language:Batchfile 0.0%