Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Click here to start participating now! Also, check out the New User Guide.
VC Program :Speed Optimization
Name: Geowin Date: February 23, 2003 at 20:29:19 Pacific OS: Win 98 CPU/Ram: C366/192
Comment:
I'm using Visual studio 6.o and working on a MFC Program.In order to make it run faster,I select Project-Setting-C/c++-optimizations:Maximized Speed,But there is an error when compiling as: Command line error D2016 : '/ZI' and '/O2' command-line options are incompatible
when I restore the optimization setting as default,it's compiling well,
what's the problem? How to use the Maximized Speed optimization?
Summary: I have a VC++ program which uses 50% of the CPU mostly by default even if there is no other use.Is there any option to change this so that it would use maximum amount of CPU available (ie not 100% of ...
Summary: Keep in mind that your compiler is already doing most of what you are. Compilers are designed to optimize your code, though that doesn't mean they are going to make it perfect. You could set the progr...