conan.tools.intel

IntelCC

This tool helps you to manage the Intel oneAPI DPC++/C++ and Classic ecosystem in Conan.

Warning

This generator is experimental and subject to breaking changes.

Warning

macOS is not supported for the Intel oneAPI DPC++/C++ (icx/icpx or dpcpp) compilers. For macOS or Xcode support, you’ll have to use the Intel C++ Classic Compiler.

Note

Remember, you need to have installed previously the Intel oneAPI software.

This generator creates a conanintelsetvars.sh|bat wrapping the Intel script setvars.sh|bat that sets the Intel oneAPI environment variables needed. That script is the first step to start using the Intel compilers because it’s setting some important variables in your local environment.

When your profile specifies compiler=intel-cc, Conan automatically invokes the IntelCC generator. You don’t need to declare it explicitly in your conanfile.

Note

If you explicitly set tools.intel:installation_path="" configuration (empty string), Conan will not generate the conanintelsetvars script. In this case, you are expected to have already activated the Intel oneAPI environment manually.

At first, ensure you are using a profile like this one:

[settings]
os=Linux
arch=x86_64
compiler=intel-cc
compiler.mode=icx
compiler.version=2026.0
compiler.libcxx=libstdc++
compiler.cppstd=gnu17
build_type=Release

[conf]
tools.intel:installation_path=/opt/intel/oneapi

Compiler mode

Conan selects the appropriate compiler executables based on the compiler.mode setting:

  • icx mode: Uses icx/icpx on Linux, or icx-cl on Windows (for MSVC compatibility)

  • dpcpp mode: Uses icx/dpcpp

  • classic mode: Uses icc/icpc

You typically don’t need to specify tools.build:compiler_executables in your profile. If you do specify it, it will take precedence over the auto-detected values.

SYCL support

Warning

The dpcpp compiler is deprecated by Intel. The recommended way to compile SYCL code is to use icpx with the -fsycl flag.

To enable SYCL compilation, use the compiler.mode=icx setting and add the -fsycl flag via the build configuration:

[settings]
os=Linux
arch=x86_64
compiler=intel-cc
compiler.mode=icx
compiler.version=2026.0
compiler.libcxx=libstdc++
compiler.cppstd=gnu17
build_type=Release

[conf]
tools.build:cxxflags=["-fsycl"]
tools.build:exelinkflags=["-fsycl"]
tools.build:sharedlinkflags=["-fsycl"]
tools.intel:installation_path=/opt/intel/oneapi

Custom configurations

Apply different installation paths and command arguments simply by changing the [conf] entries. For instance:

intelprofile
[settings]
...
compiler=intel-cc
compiler.mode=icx
compiler.version=2026.0
compiler.libcxx=libstdc++
build_type=Release

[conf]
tools.intel:installation_path=/opt/intel/oneapi
tools.intel:setvars_args=--config="full/path/to/your/config.txt" --force

Run again a conan install . -pr intelprofile, then the conanintelsetvars.sh script (if we are using Linux OS) will contain something like:

conanintelsetvars.sh
. "/opt/intel/oneapi/setvars.sh" --config="full/path/to/your/config.txt" --force

The IntelCC generator can also be fully instantiated in the conanfile generate() method:

conanfile.py
from conan import ConanFile
from conan.tools.intel import IntelCC

class App(ConanFile):
    settings = "os", "arch", "compiler", "build_type"

    def generate(self):
        intelcc = IntelCC(self)
        intelcc.generate()

Reference

class IntelCC(conanfile)

Class that manages Intel oneAPI DPC++/C++/Classic Compilers vars generation

arch

arch setting

property ms_toolset

Get Microsoft Visual Studio Toolset depending on the mode selected

generate(scope=None)

Generate the Conan Intel file to be loaded in build and run environments.

Parameters:

scope – The scope(s) for which to generate. Can be a string or list of strings. Defaults to [“build”, “run”] to enable both compilation and runtime.

property installation_path

Get the Intel oneAPI installation root path

property command

The Intel oneAPI DPC++/C++ Compiler includes environment configuration scripts to configure your build and development environment variables:

  • On Linux, the file is a shell script called setvars.sh.

  • On Windows, the file is a batch file called setvars.bat.

  • Linux -> >> . /<install-dir>/setvars.sh <arg1> <arg2> <argn><arg1> <arg2> <argn> The compiler environment script file accepts an optional target architecture argument <arg>: - intel64: Generate code and use libraries for Intel 64 architecture-based targets. - ia32: Generate code and use libraries for IA-32 architecture-based targets.

  • Windows -> >> call <install-dir>\setvars.bat [<arg1>] [<arg2>] Where <arg1> is optional and can be one of the following: - intel64: Generate code and use libraries for Intel 64 architecture (host and target). - ia32: Generate code and use libraries for IA-32 architecture (host and target).

    With the dpcpp compiler, <arg1> is intel64 by default.

    The <arg2> is optional. If specified, it is one of the following: - vs2019: Microsoft Visual Studio* 2019 - vs2017: Microsoft Visual Studio 2017

Returns:

str setvars.sh|bat command to be run

conf

IntelCC uses these configuration entries:

  • tools.intel:installation_path: (required) argument to tell Conan the installation path, if it’s not defined, Conan will try to find it out automatically. If it is explicitly set to the empty string (""), Conan will skip the generation of the conanintelsetvars script, assuming the Intel environment has already been activated manually.

  • tools.intel:setvars_args: (optional) it is used to pass whatever we want as arguments to our setvars.sh|bat file. You can check out all the possible ones from the Intel official documentation.