Changes between Version 1 and Version 2 of Ticket #65843, comment 7


Ignore:
Timestamp:
Sep 16, 2022, 10:16:19 AM (20 months ago)
Author:
barracuda156
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #65843, comment 7

    v1 v2  
    1010UPD. So here is why it should be changed to `.F90`:
    1111
    12 {{{
    13 First and simplest, the source file in which you attempt to employ it apparently has the extension .f90. What this extension signifies to gfortran (and to the GCC compiler driver, by any other name) is: Free form Fortran source code that should not be preprocessed. Similarly .f95, .f03 and .f08. If you want gfortran to infer that a source file contains free form Fortran code that must be preprocessed, give it one of the extensions .F90, .F95, .F03 or .F08.
    14 }}}
     12> First and simplest, the source file in which you attempt to employ it apparently has the extension .f90. What this extension signifies to gfortran (and to the GCC compiler driver, by any other name) is: Free form Fortran source code that should not be preprocessed. Similarly .f95, .f03 and .f08. If you want gfortran to infer that a source file contains free form Fortran code that must be preprocessed, give it one of the extensions .F90, .F95, .F03 or .F08.
     13
    1514https://stackoverflow.com/questions/31649691/stringify-macro-with-gnu-gfortran
    1615