Intel® C++ Compiler 16.0 User and Reference Guide
Controls the debug information emitted for types declared in a compilation unit.
Linux and OS X: | -feliminate-unused-debug-types -fno-eliminate-unused-debug-types |
Windows: | /Qeliminate-unused-debug-types /Qeliminate-unused-debug-types- |
None
-feliminate-unused-debug-types |
The compiler emits debug information only for types that are actually used by a variable/parameter/etc.. |
This option controls the debug information emitted for types declared in a compilation unit.
If you specify -fno-eliminate-unused-debug-types (Linux and OS X) or /Qeliminate-unused-debug-types-, it will cause the compiler to emit debug information for all types present in the sources. This option may cause a large increase in the size of the debug information.
None