= FORTRAN applications = == F2X == One option is to use f2c to convert your FORTRAN program to C. M.F. Somers has created a [http://boinc.gorlaeus.net/F2c.php BOINC-enabled f2c library] that simplifies this process. == Windows: cygwin == Include the file 'boinc_api_fortran.C' in the api/Makefile.am, but comment out the 'zip' calls, to avoid the linking with 'libboinc_zip.a' To link it is necessary to include the 'winmm.dll' library (-lwinmm). == Windows: Visual Studio == Note: a working example similar to the following (based on outdated BOINC code) is [http://boinc.berkeley.edu/TestLibs.zip here]; see also its [http://boinc.berkeley.edu/taufer.txt README]. Start by creating a new FORTRAN project. Add all the FORTRAN specific files, then add all the files needed for the BOINC library (e.g. boinc_api.C). Make sure that BOINC and the FORTRAN files are compiled using the same type of standard libraries. i.e. if the BOINC is compiled with the debug multithreaded DLL libraries, make sure the FORTRAN files are compiled with the DLL setting. For every BOINC function you want to call from fortran you must add an interface and subroutine: {{{ INTERFACE SUBROUTINE boinc_finish(status) END SUBROUTINE boinc_finish END INTERFACE }}} Remember to declare the type of arguments. INTEGER status You must then tell the compiler that the function you are interfacing is a C routine. You do this by adding the statement: {{{ !DEC$ ATTRIBUTES C :: boinc_finish }}} The interface will end up looking like this: {{{ INTERFACE SUBROUTINE boinc_finish(status) !DEC$ ATTRIBUTES C :: boinc_finish !DEC$ ATTRIBUTES ALIAS : '?boinc_finish@@YAHH@Z' :: boinc__finish INTEGER status END SUBROUTINE boinc_finish END INTERFACE }}} You can now call the BOINC function in FORTRAN. {{{ call boinc_finish(0) }}}