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

ID 767253
Date 3/22/2024
Public
Document Table of Contents

save-temps, Qsave-temps

Tells the compiler to save intermediate files created during compilation.

Syntax

Linux:

-save-temps

-no-save-temps

Windows:

/Qsave-temps (C++ only)

/Qsave-temps- (C++ only)

None (SYCL only)

Arguments

None

Default

Linux systems: -no-save-temps

On Linux systems, the compiler deletes intermediate files after compilation is completed.

Windows systems: .obj files are saved

On Windows systems, the compiler saves only intermediate object files after compilation is completed.

Description

This option tells the compiler to save intermediate files created during compilation. The names of the files saved are based on the name of the source file; the files are saved in the current working directory.

If option -save-temps (Linux) or option /Qsave-temps (Windows) is specified, the following occurs:

  • On Linux, the object .o file is saved.

  • On Windows, the .obj file object .o file is saved.

If -no-save-temps is specified on Linux systems, the following occurs:

  • The .o file is put into /tmp and deleted after calling ld.

  • The preprocessed file is not saved after it has been used by the compiler.

If /Qsave-temps- is specified on Windows systems, the following occurs:

  • The .obj file is not saved after the linker step.

  • The preprocessed file is not saved after it has been used by the compiler.

NOTE:

This option only saves intermediate files that are normally created during compilation.

IDE Equivalent

None

Alternate Options

None