Changes between Version 9 and Version 10 of FortranApps


Ignore:
Timestamp:
Oct 10, 2007, 5:34:38 PM (17 years ago)
Author:
Nicolas
Comment:

Get rid of 'click here' links (full list)

Legend:

Unmodified
Added
Removed
Modified
  • FortranApps

    v9 v10  
    1313== Windows: Visual Studio ==
    1414
    15 Note: a working example similar to the following (based on outdated BOINC code) is [/TestLibs.zip here]; see also its [/taufer.txt README].
     15Note: there is [/TestLibs.zip a working example] similar to the following (based on outdated BOINC code); see also its [/taufer.txt README].
    1616
    1717Start 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.
     
    9999{{{
    100100../fortran/configure '--with-boinc=/usr/people/dbraun/src/boinc/build-5.9.3' \
    101 '--with-boinc_src=/usr/people/dbraun/src/boinc/boinc5.9.3' 'FC=gfortran'
    102 
    103 make
    104 }}}
    105 I have different compile and src directories for boinc. --with-boinc is the compile dir and --with-boinc_src is the source directory.
    106 
    107 The app does nothing. It is dTASSER without the dTASSER code. It does compile and link against the boinc libs.
     101'--with-boinc_src=/usr/people/dbraun/src/bo