Controls the generation of static destructors in C++.
#pragma no_static_dtors on | off | reset
If you enable this pragma, the compiler does not generate destructor calls for static data objects. Use this pragma to generate smaller object code for C++ programs that never exit (and consequently never need to call destructors for static objects).
This pragma does not correspond to any panel setting. By default, this setting is disabled.