Disables all optimizations.
Linux: | None |
Windows: | /Od |
None
OFF |
The compiler performs default optimizations. |
This option disables all optimizations. It can be used for selective optimizations, such as a combination of /Od and /Ob1 (disables all optimizations, but enables inlining).
This content is specific to C++; it does not apply to DPC++. On IA-32 architecture, this option sets the /Oy- option.
Visual Studio: Optimization > Optimization
Eclipse: None
Linux: -O0
Windows: None