debugformat - ratzlaff/premake-core GitHub Wiki

Specifies the desired format of the debug information written to the output binaries.

debugformat "format"

Parameters

format specifies the desired debug format:

Value Description
c7 Specifies that MSVC should store debuginfo in the objects rather than a separate .pdb file.
dwarf Specifies that xcode or gcc should store debuginfo in the objects in dwarf format rather than in separate files.
split-dwarf Specifies that the dwarf debuginfo should be stored in separate files.

More values may be added by add-on modules.

Applies To

Project configurations.

Availability

Premake 5.0 or later.