Skip to main content
Engineering LibreTexts

22.3: Windows Compilation

  • Page ID
    54393
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \) \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)\(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\) \(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\)\(\newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    Please note, the Fortran compiler download and installation (previous section) must have been completed before starting this step. In order to compile and work with programs under Windows, it will be necessary to provide typed commands. This is done from within the “Command Prompt” utility.

    Command Prompt Window

    The first step is to open the Windows Command Prompt Window. In Windows 7, the “Command Prompt” is usually under Programs \(\rightarrow\) Accessories \(\rightarrow\) Command Prompt. In Windows 8 or Window 10, the “Command Prompt” can be found by using Search and is listed under the Windows System heading.

    The open Command Prompt window for any Windows version will look similar to the following:

    The Windows command prompt.

    Once the Command Prompt is open, the device and directory for the working files can be set.

    Device and Directory

    In order to compile and work with programs under Windows, a working directory should be established. This is where the program files will be stored. First, establish the device of the working directory. If the files are on C:\ (the main hard drive), the device is already set. If the working directory is located on a network drive, alternate drive, or USB drive, the device will need to be set.

    Using the “My Computer”, determine the device or drive letter where your directory is located. Type that letter at the prompt in the Command Prompt window. For example, if your device is K, you would type “k:”.

    At the drive prompt (i.e., “C:\>” or “K:\>”) you will need to change directory into the directory where your files are (if you created one). The “cd <dir_name>” command can be used. For example, if the directory is named cs117, the command would be “cd cs117”.

    For example:

    C:\Documents and Settings\Ed\My Documents> k:
    C:\> cd cs117
    

    At this point, typing dir (for directory) will provide a list of files in the directory. While the format will appear different, the files are the same as shown in the My Computer listing.

    Compiler Installation Verification

    To ensure the compiler is installed correctly, open the “Command Prompt”, and type gfortran at the prompt.

    C:\cs117> gfortran
    gfortran: fatal error: no input files
    compilation terminated.
    

    The “no input files” message means that the installation was completed successfully. It is not necessary to set the device or directory in order to perform this verification.

    However, if the following message is displayed,

    C:\cs117> gfortran
    'gfortran' is not recognized as an internal or external command,
    operable program or batch file.
    

    it means that the Fortran compiler is not installed. The installation issue must be addressed before continuing. Once the installation is completed successfully, the compilation steps detailed in Chapter 3 can be completed.

    Compilation

    Once the Fortran compiler is installed, programs can be compiled. Open the “Command Prompt”, and set the device and directory as appropriate.

    At this point the program can be compiled, using “gfortran. The optional “-o” qualifier is used to set the name of the output file. To execute, you can type the name of the executable (that was specified with the “-o”).

    To compile the example program, the following command would be entered:

    C:\cs117> gfortran -o hw hw.f95
    

    This command will tell the 'gfortran' compiler to read the file hw.f95 and, if there are no errors, create an executable file named hw.exe. If there is an error, the compiler will generate an error message, sometimes cryptic, and provide a line number. Such errors are usually the result of mistyping one of the instructions. Any errors must be resolved before continuing.

    Executing

    To execute or run a program, type the name of the executable file. For example, to execute or run the hw.exe program:

    C:\cs117> hw
     Hello World
    C:\cs117>
    

    Which will execute the example program and display the “Hello World” message to the screen.

    Example

    A more complete example is as follows:

    Compilation in a command prompt.

    It is not necessary to type the extension (i.e., “.exe”) portion of the file name.


    This page titled 22.3: Windows Compilation is shared under a CC BY-NC-SA 3.0 license and was authored, remixed, and/or curated by Ed Jorgensen via source content that was edited to the style and standards of the LibreTexts platform; a detailed edit history is available upon request.

    • Was this article helpful?