Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

libraries in Visual C++

Options
  • 22-06-2004 3:42pm
    #1
    Closed Accounts Posts: 17


    Hello,

    I've written a series of C++ libraries which I use in an MFC application I'm also writing.
    I'm writing this MFC application in DEBUG mode. What I'm wondering is should I use the release or debug versions of my libraries??

    Any comments would be appreciated,
    Bostitch


Comments

  • Registered Users Posts: 4,676 ✭✭✭Gavin


    It's simple enough.. if you are going to release the application, use release mode. It will be faster.

    Whilst developing the app stick with debug on everything, makes it much easier to debug if you are able to step through the library code and will provide you with helpful error messages when it crashes.

    Gav


  • Closed Accounts Posts: 17 Bostitch


    Thanks for that.


Advertisement