Get Started with the Intel® Fortran Compiler Classic and Intel® Fortran Compiler

ID 767260
Date 3/31/2023
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Get Started on Windows*

Before You Begin

For building applications with full IDE functionality, including debugging and development, you must have a supported version of Microsoft Visual Studio* installed. To build applications using command-line tools only, you must have a supported version of Build Tools for Visual Studio installed. For all versions, Desktop development with C++ support must be selected as part of the Visual Studio or Build Tools installation.

You typically do not need to set the environment variables on Windows, as the compiler command-line window sets these variables for you automatically. If you need to set the environment variables, run the environment script as described in the suite-specific Get Started documentation.

The default installation directory (<install_dir>) is C:\Program Files (x86)\Intel\oneAPI.

Option 1: Use the Command Line

The following steps show how to invoke the compiler on Windows. Exact steps may vary depending on which version of Windows is installed.

Step 1: Open a command prompt

  1. Open the Start menu
  2. Select Intel oneAPI command prompt under the installed version of Intel oneAPI, for example Intel oneAPI 2023

Step 2: Invoke the compiler

Invoke the compiler using the following syntax:

{ifx|ifort} [option] file1 [file2...] [/link link_options]

For example:

ifx hello.f90 

To display all available compiler options, use the following command:

  • ifx /help

Refer to Compiler Options for detailed information about available options.

Option 2: Use Microsoft Visual Studio

The following steps show how to invoke the compiler from within Microsoft Visual Studio. Exact steps may vary depending on the version of Microsoft Visual Studio in use.

Step 1: Build a binary

  1. Launch Microsoft Visual Studio

  2. Select File > New > Project

  3. In the New Project window, select a project type under Fortran

    (Set Fortran as the language in the Language dropdown)

  4. Select a template and click OK

  5. Select Build > Build Solution

The results of the compilation display in the Output window.

Step 2: Set build configurations

  1. Right click on Project in Solution Explorer > Properties
  2. Locate Fortran in the list and expand the heading
  3. Walk through the available properties to select your configuration
NOTE:
To change the compiler version in Microsoft Visual Studio, navigate to Tools > Options > Intel Compilers and Libraries> IFX Intel Fortran > Compilers.

Build a Program From the Command Line

Use the following steps to test your compiler installation and build a program.

  1. Use a text editor to create a file called hello.f90 with the following contents:
    print *, “Hello, world!”
    end
  2. From a command prompt, compile hello.f90:
    ifx hello.f90
  3. Now you have an executable called hello, which can be run and will give immediate feedback:
    hello

    Which outputs:

    Hello, world!