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

Threaded View

  1. #1
    Join Date
    Mar 2009
    Posts
    166

    mixing Debug and Realese builds of a library not working?

    Hello,

    I have a library and a simple application that uses the library. It works with these combinations:

    library (debug) - application (debug)
    library (release) - application (release)

    but it does not work if I mix release and debug versions like this:

    library (debug) - application (release)
    library (release) - application (debug)

    It seems to crash in wierd places.. any idea why this might be happening? 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.

    Regards,
    E. Khule
    Last edited by ekhule; December 8th, 2009 at 08:23 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