CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 15 of 54

Threaded View

  1. #11
    Join Date
    Apr 1999
    Posts
    27,449

    Re: Getting data in to C++ from excel, any help would be greatly appreciated

    Quote Originally Posted by Surreall View Post
    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)
    gcc --help
    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
  •  





Click Here to Expand Forum to Full Width

Featured