Changes between Version 9 and Version 10 of Help/FAQ


Ignore:
Timestamp:
Aug 14, 2017 11:42:43 AM (8 years ago)
Author:
raasch
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Help/FAQ

    v9 v10  
    2626
    2727=== Are there any known issues with specific Fortran compiler versions?
    28 Yes, PALM cannot be compiled with the GNU Fortran compiler versions 4.8.X and older. To solve this issue, please update to a newer compiler. A typical error message appears with the function {{{C_SIZEOF}}}:
     28Yes, PALM cannot be compiled with the '''GNU Fortran compiler versions 4.8.X and older'''. To solve this issue, please update to a newer compiler. A typical error message appears with the function {{{C_SIZEOF}}}:
    2929{{{
    3030Error: 'x' argument of 'c_sizeof' intrinsic at (1) must be an interoperable data entity
    3131}}}
    3232
     33'''Cray Fortran : Version 8.5.6 and maybe other versions:'''\\
     34In case of compiler option {{{-eD}}} assignments in INTEGER and CHARACTER declaration statements, e.g.
     35{{{
     36   CHARACTER (LEN=30), DIMENSION(100) ::  string_a = 'initial string'
     37}}}
     38do not work if arrays have more than 9999 elements. Use options {{{-G0 -rl -m2 -Rbcdsp}}} instead.
    3339
     40
     41