Intel® oneAPI DPC++/C++ Compiler Developer Guide and Reference

ID 767253
Date 6/24/2024
Public
Document Table of Contents

fno-system-debug

Disables generation of debug information for declarations in system headers.

Syntax

Linux:

-fno-system-debug

Windows:

-fno-system-debug

Arguments

None

Default

OFF

Debug information is generated for declarations in system headers.

Description

This option disables generation of debug information for declarations in system headers.

It is only useful if debugging information is requested, so you need to also specify option -g (Linux) or an MSVC option such as /Z7 (Windows).

Alternate Options

None

Example

The following shows an example of how to specify this option:

icpx -fsycl -g -fno-system-debug test.cpp