The parameters contained within the FORTRAN section are used for the control of compiler based error and warning messages. Also, any additional source files, required for the compilation of the project, are indicated here as well.
The input parameters involved here are outlined below.
This option will add some additional information to the build, so as to allow for the effective use of a Fortran debugger. If you have selected this option, you should also select all of the checks available in the Checks section (see below).
When a program crashes on a PC, the operating system brings up a dialog asking if you would like to debug the case. If you select Yes and if you had this option selected, the FORTRAN debugger can load the source file and point to the line of code that is causing the crash.
The input parameters involved here are outlined below.
With this option selected, the program will stop if you are accessing an invalid array index. For example, if the array X is declared to be of dimension 10, and you have a line of source code that has X(J). If J ever goes greater than 10, the program will stop with a proper message. If this option is de-selected, the program will continue execution and eventually may crash, adding difficulty to tracing the cause.
This option should be used when testing your new models. It will slow down the simulation and the speed penalty will vary from machine to machine – you can disable this option if speed is a concern. Please read your FORTRAN compiler documentation you are using for more details.
This option is useful for debugging but has a speed penalty that is again architecture dependent. Please read your Fortran compiler documentation for more details.
This option is useful for debugging but has a speed penalty that is again architecture dependent. Please read your Fortran compiler documentation for more details.
The Fortran compiler issues a warning if the argument type (REAL, INTEGER, etc.) of the CALL statement does not match with the subroutine statement (this is applicable to functions as well).
Do not ignore this warning as it may have the potential to create unpredictable and hard to trace results.
The Fortran compiler issues a warning if a routine is not called in the program.
A warning is issued if a variable is used before it is assigned a value. Normally, the cause of this is a typographical mistake in the source code.
This option provides the ability to enable/disable the Fortran preprocessor. Disabled by default, this option is supported on both the Intel and GFortran compilers. An additional text field is also provided to allow the user to define a comma-separated list of preprocessor identifiers.