Intel® DPC++ Compatibility Tool Developer Guide and Reference
A newer version of this document is available. Customers should click here to go to the newest version.
Command Line Options Reference
The tool supports many command line options you can use in your migration. This section provides:
Functional groups of options:
A list of intercept-build options
Auto-Complete Command Line Options
The tool supports auto-completion of command line options. You can auto-complete the option name and option value (for enumeration options only) by using <tab>.
Enable this feature with the following command:
source /path/to/oneapi/package/install/folder/<toolkit-version>/oneapi-vars.sh
The auto-complete feature will not work if <tab> is used after <space>.
The following examples show how to use the auto-complete feature:
Show all tool options:
dpct --<tab><tab>
Auto-complete the command to dpct --version
dpct --ver<tab>
Show all available values of the --use-experimental-features option:
dpct --use-experimental-features=<tab><tab>
Auto-complete the command to dpct --use-experimental-features=logical-group,matrix:
dpct --use-experimental-features=logical-group,mat<tab>