Changes between Version 9 and Version 10 of Help/FAQ
- Timestamp:
- Aug 14, 2017 11:42:43 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Help/FAQ
v9 v10 26 26 27 27 === 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}}}: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}}}: 29 29 {{{ 30 30 Error: 'x' argument of 'c_sizeof' intrinsic at (1) must be an interoperable data entity 31 31 }}} 32 32 33 '''Cray Fortran : Version 8.5.6 and maybe other versions:'''\\ 34 In 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 }}} 38 do not work if arrays have more than 9999 elements. Use options {{{-G0 -rl -m2 -Rbcdsp}}} instead. 33 39 40 41