> ## Documentation Index
> Fetch the complete documentation index at: https://docs.incredibuild.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Running Builds for NVCC

Last updated on Sep 1, 2026

Incredibuild can intercept NVIDIA CUDA Compiler Driver (NVCC) builds and supports [Build Cache](/windows/build-cache) for NVCC builds.

## BuildCacheProfile Prerequisites

Build Cache caches nvcc (`AllowBuildCache="true"`).

For NVCC, add `/BuildCacheProfile="<IB installation folder>\BuildCache Profiles\BuildCache_profile_CUDA.xml"` to the BuildConsole command.

## Profile Prerequisites

Incredibuild intercepts nvcc and this is defined in the standard `ib_profile.xml`.

## Running a NVCC Build

Run your NVCC build through BuildConsole, pointing `/Profile` at your profile XML file and `/BuildCacheProfile` to the NVCC Build Cache profile:

```powershell theme={null}
BuildConsole /command=<nvcc command> /Profile="<path>\ib_profile.xml" /BuildCacheProfile="<IB installation folder>\BuildCache Profiles\BuildCache_profile_CUDA.xml"
```
