Changes between Version 4 and Version 5 of FortranApps


Ignore:
Timestamp:
Jul 16, 2007, 11:10:11 AM (17 years ago)
Author:
Nicolas
Comment:

Use server-relative links, formatted the list of processor codes

Legend:

Unmodified
Added
Removed
Modified
  • FortranApps

    v4 v5  
    1313== Windows: Visual Studio ==
    1414
    15 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].
     15Note: a working example similar to the following (based on outdated BOINC code) is [/TestLibs.zip here]; 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.
     
    5454== Intel FORTRAN compiler ==
    5555
    56 -ax<codes> generate code specialized for processors specified by <codes>
    57            while also generating generic IA-32 code.  <codes> includes
    58            one or more of the following characters:
     56`-ax<codes>` generate codes specialized for processors specified by <codes>` while also generating generic IA-32 code. `<codes>` includes one or more of the following characters:
    5957
    60     K Intel Pentium III and compatible Intel processors
     58 K:: Intel Pentium III and compatible Intel processors
    6159
    62     W Intel Pentium 4 and compatible Intel processors
     60 W:: Intel Pentium 4 and compatible Intel processors
    6361
    64     N Intel Pentium 4 and compatible Intel processors.  Enables new
     62 N:: Intel Pentium 4 and compatible Intel processors.  Enables new
    6563       optimizations in addition to Intel processor-specific optimizations
    6664
    67     P Intel Core(TM) Duo processors, Intel Core(TM) Solo processors, Intel
     65 P:: Intel Core(TM) Duo processors, Intel Core(TM) Solo processors, Intel
    6866       Pentium 4 and compatible Intel processors with Streaming SIMD
    6967       Extensions 3 (SSE3) instruction support
    7068
    71     B Intel Pentium M and compatible Intel processors
     69 B:: Intel Pentium M and compatible Intel processors
    7270
    73 btw, you should not use the -x options!
     71You should not use the -x options!