Changes between Version 9 and Version 10 of FortranApps
- Timestamp:
- Oct 10, 2007, 5:34:38 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FortranApps
v9 v10 13 13 == Windows: Visual Studio == 14 14 15 Note: a working example similar to the following (based on outdated BOINC code) is [/TestLibs.zip here]; see also its [/taufer.txt README].15 Note: there is [/TestLibs.zip a working example] similar to the following (based on outdated BOINC code); see also its [/taufer.txt README]. 16 16 17 17 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. … … 99 99 {{{ 100 100 ../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