|
-
January 31st, 2013, 02:18 PM
#11
Re: Getting data in to C++ from excel, any help would be greatly appreciated
 Originally Posted by Surreall
I have very very few debugging options, most are greyed out. Those that are on in settings are:
- Autobuild project if it is not up to date
- When stopping, autoswitch to first frame with valid source info
- enable watch scripts
- catch c++ expressions
None others are ticked
The options you want are ones that control optimizations, not debugging options. You want to turn off debugging and turn on optimizations if you want to know exactly how your program performs.
The gcc compiler itself has numerous optimization settings -- maybe there is an entry in the IDE you're using to enter these commands if those options do not show up in the IDE.
Remember that CodeBlocks is not the compiler, gcc is the compiler If you want to know the gcc options, go to the command line and type (I believe)
Or something similar to that. The gcc.exe program has to be in your system path (or you CD to the directory that contains the executable).
Regards,
Paul McKenzie
Last edited by Paul McKenzie; January 31st, 2013 at 02:22 PM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|