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

Threaded View

  1. #4
    Join Date
    May 2002
    Location
    Lindenhurst, NY
    Posts
    867

    Re: mixing Debug and Realese builds of a library not working?

    Quote Originally Posted by ekhule View Post
    Am I required to use debug version of a library with a debug application utilizing that library and vice versa?

    By the way, my libraries are all statics .lib files.
    I'm not sure if its a requirement, but I do it anyway. To make it easier I change the output file of the debug version of the static lib to mylibd (I add 'd' to the end of the .lib name). Then in the application that uses the static lib, I use mylibd.lib for the debug config & mylib.lib for the release config.
    Last edited by Martin O; December 8th, 2009 at 09:58 AM.

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